- ASP Tips
Everyone needs a tip or trick once in a while, especially coders. Learn some handy ASP tips and tricks here. Topics include: Includes, Cookies and Templates.
http://www.thescripts.com/serversidescripting/asp/articles/asptips/page0.html
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Displaying All of the Form Variables
This short tutorial describes a little function that is useful in debugging your ASP pages. This function, FormDataDump(), outputs all of the form variables being passed into a page. Various options for this function allow the developer to view the values in a debugger-style mode, or in a quiet-mode, in which case the form variable output is hidden from the end user.
http://www.4guysfromrolla.com/webtech/tips/t062801-1.shtml
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Implementing Dynamic Arrays of Objects
Using classes in ASP 3.0 we can create dynamic arrays of objects. This article presents a sample code showing how to implement a class of dynamic arrays of objects several layers deep.
http://www.15seconds.com/issue/010608.htm
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Maximize Your ASP Performance
Active Server Pages give great performance, but you can make them even faster with a few tweaks to your code and database connections. Heres a detailed tutorial on how to refine your scripts and ASP features for maximum speed.
http://www.webdevelopersjournal.com/articles/asp_performance.html
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Recursive Functions
A function that calls itself repeatedly, satisfying some condition is called a Recursive Function. Using recursion, we split a complex problem into its single simplest case. The recursive function only knows how to solve that simplest case. Youll see the difference between solving a problem iteratively and recursively later.
Price: Free
http://www.15seconds.com/Issue/000803.htm
(Rating: 0.00 Votes: 0)
Rate It
Review It
- String Functions (Len, Left, Mid, Right)
This is a short exmaple that demonstrates the text manipulation functions in .asp. It takes a string of ten numbers 8005551212 (the 800 number for 800 info) and splits it into the common ###-###-#### format.
http://www.codeave.com/asp/code.asp?u_log=79
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Stripping HTML Tags using Regular Expressions
This article examines how to strip HTML tags using regular expressions. Regular expressions are nifty little buggers that can be used to perform advanced string pattern matching and replacing.
http://www.4guysfromrolla.com/webtech/042501-1.shtml
(Rating: 0.00 Votes: 0)
Rate It
Review It
- Using
This article explains why you shouldn be sprinking <% %> render blocks throughout your HTML code. Its inefficient for the server and for your users!
http://coveryourasp.com/DontRender.asp
(Rating: 0.00 Votes: 0)
Rate It
Review It
|