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 Application Object
Each website is an application associated with an application object. You can create subdirectories within the website and use ISM to make them into applications. Then if an application crashes, the website will continue to run. 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 ...
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 ...
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 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 ...
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 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 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 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 ...