Browse a Listing
Top > ASP > Tips and Tutorials > Development
Popular Tags
Free Script links
Companies using Web services sold by application service providers (ASPs) are expected to increase nearly 250 percent by 2004, according to the Phillips Group (see http://www.networkcomputing.com/1125/1125service1.html). Substantial portions of those Web services provide Application Programming Interfaces (APIs) to their services via the Internet. While these services are convenient and easy to use, they also dramatically increase network traffic and potentially slow down application performance. Despite the potential slowdown, most customers simply execute a round-trip request for every one of their incoming requests
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 1 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
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. To learn more about regular expressions be sure to check out the Regular Expressions Article Index. Also, your regular expressions questions can be answered at the Regular Expressions Forum at ASPMessageboard.com.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 0 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Text manipulation in .asp is a snap. The following example takes a string of ten numbers 8005551212 (the 800 number for 800 info) and splits it into the common ###-###-#### format.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 1 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
When it comes to debugging ASP, you often want to keep track of the variable values throughout the script. This article introduces a procedure that, when invoked, displays all variables in a script along with their values and internal types.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 0 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
A lot of VBScript programmers have little experience with events as there are not a whole lot of them available in the ASP environment. This tutorial will show a VBScript programmer how to access all 8 events made available by ASP.
So what's an event? An event is a procedure that is called when certain criteria has been met or only at a specified time. A programmer cannot trigger an event directly using ASP or VBScript but can plan for the event and schedule code to execute during that specific event by including special procedure blocks into their run-time code.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 3 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
How often have you wanted to pass information in a array from one page to another ? I wanted to do it many times but used many things like session variables and application variables till I found the better way of doing it ! Using Split and Join Functions. Join() can put the values of your data in a array in a string seperated by a given charater. This data can then be put into a querystring and then be passed to the next page. You can now retrieve the values in the querystring and Split() them. Just use the function with the same character you has used to join them. And you have the data in a new array
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 2 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Member Reviews
Visitor Ratings
Google PR
Member Reviews
Visitor Ratings
Google PR
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. So what can you do about it?
There are a few things you can do to speed up an asp script. By speeding up, I mean decreasing the execution time of a script. These tricks will not speed up a database script that writes 10,000 entries to an html table. The reason that those scripts take so long is not necessarily related to the database trip and asp execution but to the rendering of html, especially tables, by a browser. All that said, these tricks will probably increase ASP performance even more if your site is really busy
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 0 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
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.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 10, 2006 Hits: 3 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR