ASP Server Object
The Server object provides access to properties and methods on the server. The Server object MapPath method maps a website path to a physical server path. 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 ...
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 ...
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 ...
Configuring the IIS ASP Global.asa File
global.asa is a file that contains subroutines that execute when an ASP application starts or stops, and when an IIS session starts or stops. The file is optional, difficult to configure, is a popular target for hackers. More ...
Sending Email With ASP
Sending email with ASP (Active Server Pages) is not difficult. You can use ASP email to create a contact form, support request form, or even perform mass emailings. CDO (Collaboration Data Objects) is the Microsoft technology that simplifies the creation of email applications. More ...
Retrieving Form Data With ASP
In this article, you learn how to create some basic html forms and how to use ASP to retrieving data from forms. You also learn how to convert the from's data to numerical values if you need to use it in calculations, and more. More ...
Simplest Code for ASP Password Protected Page
Sometimes you want to store private links on your server. What is the simplest way to password protect a single webpage with classic ASP? This article provides the simplest ASP code for that. More ...
ASP VBScript to Render XML
If you are using VBScript from an Active Server Page (ASP) you can use the Microsoft.XMLDOM object to parse and render an XML document on a webpage. More ...
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 ...
