All articles with keyword "ASP Black Belt"
A One Page Web Site
One of the goals in writing an ASP application is to minimize the number of places you have to work with code. There are lots of mechanisms for doing this, such...
Click for more...
Adding Comment Blocks
To remind me what I have done to an ASP file, I will add a comment block to the top of every file (after Option Explicit, of course). This comment block usually...
Click for more...
Build a Dynamic Copyright Line
Ever been to a site whose copyrights are out of date? Avoid the problem by creating a dynamic copyright line that can be included in your file through an inclu...
Click for more...
Building a Document Picker
If you have limited space on your page, drop-down lists are an easy way to minimize space consumption for long lists of links or documents. Let's say, for insta...
Click for more...
Building a Format Function
If you want an ASP solution for the missing Format function that you might have liked in Visual Basic,
here’s a version in VBScript:
'''''''''''''''...
Click for more...
Building a List Automatically
Here's a tip sent in by Wilfred Mathews on how to build either a drop-down list or a multi-row list box by using a database query.
While using the Select...
Click for more...
Building a List Automatically, Revisited
In a previous tip, you learned how to build a list (such as a combo box or list box) using a database recordset. If you're using the list multiple times, Amos C...
Click for more...
Building Multi-Page Forms
A reader asked for some advice on multi-page forms, in which a large form (like an insurance application) requires more than one screen of information. As was m...
Click for more...
Generating Static HTML from ASP
In some cases, you may want to generate static HTML pages from your ASP pages. In cases where you're not frequently updating pages or only update them periodica...
Click for more...