 |
ASP Cookies |
ASP Cookies are used to store information specific to a visitor of your website. This cookie is stored to the user's computer for an extended amount of time. You can set cookie ex...more » |
|
 |
|
|
 |
ASP Sessions |
The ASP Session Object allows you to keep information specific to each of your site's visitors. Information like username, shopping cart, and location can be stored for the life o...more » |
|
 |
|
|
 |
ASP Functions |
Functions are used to perform calculations. The difference between function and subroutines is that function can return one value. A function begins with the keyword FUNCTION and ...more » |
|
 |
|
|
 |
ASP Procedures |
Procedures or subroutines are used to perform an action. A subroutine starts with the keyword SUB then subroutine name. The code is written inside the subroutine before ending it ...more » |
|
 |
|
|
 |
ASP If Statement |
An If Statement is used to make a decision in your program. It is used to execute certain block of code if some condition is true.
<%...more » |
|
 |
|
|
 |
ASP Variables |
Variables are used to store the information. In ASP it is not required to declare your variables but it is a good programming practice to declare all your variables befo...more » |
|
 |
|
|
 |
ASP JavaScript |
In ASP the default scripting language is VBScript. But we can use javascript to code in ASP. if you want to specify javascript as scripting language you have to state it at the ve...more » |
|
 |
|
|
 |
ASP Arrays |
An array is a contiguous space of memory allocated for storing some data. An array is declared with the keyword DIM and then the array name and then the size of the array in paren...more » |
|
 |
|
|
 |
ASP Introduction |
Active Server Pages abbreviated as ASP, is a server-side scripting environment developed by Microsoft. Using ASP, we can create and run dynamic and interactive web server applicat...more » |
|
 |
|
|
 |
ASP Syntax |
ASP file normally contains HTML tags, XML, text and server scripts. The server scripts are surrounded by <% and %>. Server scripts can contain statements, operators, express...more » |
|
 |
|
|
 |
ASP Application Object |
The Application object is created when the first .asp page is requested and remains there until the server shuts down. All the variables created with application object have appli...more » |
|
 |
|
|
 |
ASP Forms |
In ASP you can gather information from HTML Form and use ASP code to process this information to make dynamic web pages. ...more » |
|
 |
|
|
 |
ASP Comments |
Comments are used to make your code more readable and documented? In ASP an apostrophe (single quote) is used to comment a line of code.
Here is the exa...more » |
|
 |
|
|
 |
ASP Email |
You can add email functionality to your ASP programs using CDO.Message object. CDOSYS is a built-in component in ASP. We will use this component to send e-mail with ASP.
...more » |
|
 |
|
|
 |
ASP ADO |
ADO stands for ActiveX Data Objects. ActiveX Data Objects are a collection of components that can be used in your ASP programs. ADO is used to communicate and manip...more » |
|
 |
|
|
 |
ASP File |
All file interactions in ASP are done through the File System Object that is included with IIS. It is used to to manipulate files, folders, and directory paths.
...more » |
|
 |
|
|