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 ...
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 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 ...
ASP Loop Control Structures
A loop control structure uses one or more conditional statements to control how many times the same block of code is executed. A loop cn abe configured to repeat a specific number of times, or repeat until a condition is true or until a condition is False. 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 ...
Working With Cookies in ASP
Cookies are small text files that are placed in a visitor's Web browser's cookie cache by a Web server when someone visits a Web site. By using a cookie the Web server can store and retrieve information about the visitor between pages. The cookie may store information about what pages the visitor viewed or what links the visitor clicked on while they visited the Web site. 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 ...
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 ...
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 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 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 ...
