Write() Binary write() AppendToLog() Buffer()property Flush() method Clear method End method Expires property Expires absolute Cache control() Redirect() Asp Response object is used to send server’s output to the client.the Response object is the counterpart of Request object,ie.In asp Request object collects information from the client and Response object sends the information to…
Asp Request Object
form QueryString ServerVariables Cookies ClientCertificate Request Object is one of the central objects in the ASP object model.When a webbrowser or other client applications ask for a page from webserver we can say that client is making a request.When a client supply a specific URL Request object is responsible for packing all this…
Asp Control Statements
If…Then Select…Case For…Next For Each….Next Do…While While…Wend Functions & Subroutine Exit Asp Control statements are statements that control the execution order.In asp there are three types of control statements. Conditional statements, Looping control , and jumping control. Asp Conditional statements 1) If….Then statement Asp if statement is used to help a programmer determine whether to…
Asp Arrays
Declaring Arrays Multi Dimensional Arrays Lbound() Function UBound() Function Split() function Arrays in ASP follow the exact same form and rules as those arrays in VBScript. You can create an array of specific size or you can create a dynamic sized array. Arrays are used to store a series of related data items ,which are…
Asp Strings / String Manipulation
Asp Strings / String Manipulation Len() Right(),Left() Instr() InstrRev() Mid() Replace() Trim(),RTrim(),LTrim() ASP Provides a set of functions that allow you to chop,prune and order strings in any way you like.Below I explain each one individually. Asp – Length of a string LEN function returns the length of a string ie. the number…
ASP Variables
ASP Variables Naming Variables Declaring variables Variable Subtypes checking for a specific subtype Converting to a subtype Variable is a section of memory that can be used to store a piece of information.In Asp the informations stored in a variable may be of different datatypes like numerical,text,date etc. In most programming languages we should…
Writing First ASP script
Writing First ASP script: An ASP script is very much like an HTML file.It includes HTML tags , text , and server side scripts , and can also include client side script .The first difference is that an ASP script must have an .asp extension. ASP is usually written using Visual Basic, Scripting Edition (VBScript)…
Asp Arrays
Declaring Arrays Multi Dimensional Arrays Lbound() Function UBound() Function Split() function Arrays in ASP follow the exact same form and rules as those arrays in VBScript. You can create an array of specific size or you can create a dynamic sized array. Arrays are used to store a series of related data items ,which are…
Asp Application Object
Events Methods collections In ASP each virtual directory on the server is an application.All the pages in that directory are part of that application.Until recently , existing webtechonologies provided cookies or hidden form fields.But ASP provides Application object & Session objects .Application object allows you to tie all the pages in a single website into…
ASP Introduction
What is ASP? Active Server Pages(ASP) is a new way of creating dynamic web pages.ASP is not a language.It’s not an application ,like frontPage 98 or Word 97. It is a technology for building dynamic and interactive web pages. ASP is a mix of HTML, scripts and ASP code that enables you to build dynamic …