Running Asp On A Web Server

Running ASP on a Web Server

Hosting Providers Unless you are hosting your ASP web application on your own Microsoft IIS web server, you generally do not have to worry about the installation and configuration steps …

Asp Server Object

ASP Server Object

The ASP Server object is used to access methods and properties on the server. The Server object provides a variety of functions such as the ability to execute other ASP …

Asp Filesystem Object

ASP FileSystem Object

In ASP, the FileSystemObject can be used to access the file system on a web server. Accessing file, folder, and drive information on the web server is completed using this …

Working With Operators In Asp

Working with Operators in ASP

VBScript is very flexible when it comes to storing data in variables. You can add variables that contain numbers together, or even concatenate strings. In ASP, we can group operators …

Asp Folder Object

ASP Folder Object

The ASP Folder object is used to access a specified file folder on the web server. As with other objects, the Folder object has properties and methods to help you …

Server Side Scripting With Asp

Server Side Scripting with ASP

If you have already learned JavaScript, then you have an understanding of the concept of client-side scripting. Server-side scripting is similar, but with one major difference. The processing of the …

Asp Special Characters

ASP Special Characters

All programming languages have special and/or reserved characters that are used for specific purposes. ASP is no different. In this tutorial, we will cover the most common special characters that …

Asp Looping Statements

ASP Looping Statements

As with most programming languages, ASP allows (through VBScript) for several types of repetitive operations, also commonly known as loops. Loops are used to repeat the same group of statements …

Asp Session Object

ASP Session Object

The ASP Session Object is a very valuable tool. It mainly allows you to store information specific about each visitor while there are actively accessing your website. Information about the …

Asp Cookies Collection

ASP Cookies Collection

A cookie is usually a small piece of data sent from a website to a visitor while the visitor is browsing a website. When the user browses the same website …

Scroll to Top