Menu
Programming ASP (Active Server Pages)

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 ...

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 ...

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 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 ...

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 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 ...

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 ...

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 ...

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 ...

ASP.NET 5 Open Source Web Framework
In February 2015, Microsoft announced an open source web framework, ASP.NET 5. Developers can now run ASP.NET applications on three distinct platforms, i.e., Windows, Linux and Mac. More ...


Learn more at amazon.com

Custom Search