Scriptsmount a free web scripts directory provides website scripts, webmaster scripts, web directory scripts, directory scripts, php scripts, perl scripts, cgi scripts, html scripts, database scripts, asp.net scripts, form scripts, guestbook scripts for webmasters
Web Scripts :: ASP :: ASP Tips and Tutorials :: Development
41.
Speeding Up ASP Page Execution
|
|
ASP pages are executed on the fly by a server when they are requested by a visitor. Because they are not compiled, ASP scripts are slow and hold up the processing of an html page. This results in people leaving your site and severely reduces the enjoyment that your asp apps can provide. This short tutorial provides a few tips to increase the execution speed of your asp programs.
Hits: 22 Rating: 0.00 Votes: 0
[Detail]
[Send URL]
Category: ASP :: ASP Tips and Tutorials :: Development
|
42.
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. You'll see the difference between solving a problem iteratively and recursively later.
Hits: 23 Rating: 0.00 Votes: 0
[Detail]
[Send URL]
Category: ASP :: ASP Tips and Tutorials :: Development
|
44.
Loops within Loops: Coding an ASP-based Bulletin Board
|
|
This article provides an easy way to list nested forums. It does have some drawbacks, though. For starters, there is an upper-bound on the number of nested replies a message can have. In this example, the number is 12, although this is configurable. Furthermore, this approach is not the most efficient approach, and could be streamlined using stored procedures and fewer ADO objects within the code.
Hits: 16 Rating: 0.00 Votes: 0
[Detail]
[Send URL]
Category: ASP :: ASP Tips and Tutorials :: Development
|
|
|
|
|