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