Menu
Programming ASP (Active Server Pages)

The ASP Session Object
When a visitor retrieves their first page from your website, ASP creates a session object. A session object is associated with each user (each web browser) while they are interacting with your website. More ...

Simplest ASP Code to Track Visits to a Specific Page
If you want to track how many visits to a specific ASP page, it would be convenient if you could have that information available right on that page. In this article I give you the simplest ASP code to do just that. More ...

Classic ASP vs ASP.NET
You may wondering what the difference is between ASP and ASP.NET. ASP.NET is the successor to ASP. When you take away all of the marketing hype, ASP.NET was developed because Microsoft's COM wasn't reliable over the Internet, and Microsoft wanted to promote C#, its replacement for Java. More ...

Handling ASP Errors
If you don?t properly handle ASP (Active Server Pages) errors, the message The page cannot be displayed will be sent to your Web site visitor. To avoid that, use the On Error Resume Next statement and the Err Object to handle errors. More ...

ASP Script Variables
In ASP you don't have to declare the "type" of a variable. All variables are of the Variant type, which can contain an integer, string, or other type. More ...

ASP VBScript Sub Procedures
One of the most common uses of Sub Procedures in ASP is to write html code and text, an example is shown here. More ...

Working With Files in ASP
When ASP is installed, the FileSystemObject and the TextStream object are automatically installed along with it. The ASP FileSystemObject allows you to work with drives, folders, and files on the server. The TextStream object allows you to create, read, and write files. More ...

ASP Keywords and Reserved Words
Keywords and reserved words are predefined identifiers that have special meanings to the system, application or compiler. Here is a list of keywords and reserved words specific to ASP and to the VBScript programming language. More ...

Creating Webpages With ASP
In this article, you learn that ASP is a server technology that allows you to create dynamic webpages. ASP is usually written in VBScript. VBScript is a powerful but easy to learn scripting language. More ...

Working With Drives in ASP
When ASP is installed, the FileSystemObject is automatically installed along with it. The FileSystemObject allows you to work with drives, folders, and files on the server. More ...

Server-Side Includes
The server-side include directive instructs the Web server to insert the content of another file into this file before processing it. It can be used to include headers, footers, and other elements that will be reused on multiple pages. More ...


Learn more at amazon.com

Custom Search