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 ...
The ASP Object Model
ASP is a server-side scripting engine released as part of Microsoft's IIS (Internet Information Services). It allows dynamically generated web pages. ASP became known as Classic ASP. Microsoft has promised to support Classic ASP until at least October 14, 2025. More ...
ASP Arrays
An Array is an indexed list of items. You access the elements in an array using their index. 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 ...
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 ...
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 ...
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 ...
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 ...
ASP VBScript Function Procedures
The purpose of a Function is to create a block of code that can be called by a reference (it's name) and can perform a specific operation on arguments that are passed to it by the calling code. 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 ...
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 ...
