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