The CacheControl property sets whether a proxy server can cache the output generated by ASP or not. By default, a proxy server will not keep...
The Cookies collection is used to set or get cookie values. If the cookie does not exist, it will be created, and take the value...
The Buffer property specifies whether to buffer the output or not. When the output is buffered, the server will hold back the response to the...
The Global.asa file The Global.asa file is an optional file that can contain declarations of objects, variables, and methods that can be accessed by every...
The #include Directive You can insert the content of one ASP file into another ASP file before the server executes it, with the #include directive....
Application Object An application on the Web may consists of several ASP files that work together to perform some purpose. The Application object is used...
Your Windows PC as a Web Server Your own PC can act as a web server if you install IIS or PWSIIS or PWS turns...
Sending e-mail with CDOSYS CDO (Collaboration Data Objects) is a Microsoft technology that is designed to simplify the creation of messaging applications. CDOSYS is a...
Creating an Access database First we will create a database in Access called Employees.mdb. This will have a table called Employee and here is what...
What is a session variable? The variables that we have created so far only exist on the page that they are declared. Session variables are...
If Statement You can make a decision based on user input using an If statement. The If statement tests a condition and if the result...
Forms An HTML form is a group of text boxes and buttons other things that allow a user to enter data. Here is the form...
About this tutorial This tutorial will teach you how to use ASP(Active Server Pages). It only includes the most important things that you need to...