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 ...
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 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 ...
Working With Folders in ASP
The FileSystemObject has a collection property called Drives. Each drive in the drives collection has a RootFolder object. Each Folder (including the RootFolder) has a subfolders collection and a Files collection. 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 ...
Introduction to ASP.NET
This article provides an overview of ASP.NET and its advantages and disadvantages compared to classic ASP. It also provides a code-behind example that you can create without Visual Studio by just typing it into a text file, and then run it on an IIS server that has the .NET framework installed. 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 ...
ASP MapPath to Convert Physical Path to Virtual Path
An Internet link is a virtual path. Certain server objects, like the FileSystemObject, require an actual physical path. The MapPath function accepts a virtual path as a parameter, and returns the physical path. 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 ...
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 ...
