Asp Response Object

  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…

Read More

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…

Read More

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…

Read More

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…

Read More

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…

Read More

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…

Read More

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…

Read More