-
What is application Object?
Shares information among users of an application. Gives a notification when an application starts or ends.
-
What is Application-scope?
Application-scope means that variables (and objects) can be accessed from any ASP pages that is part of the application.
-
What happens to ASP pages?
The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser.
-
What are LOCAL and GLOBAL variables?
Local variables lifetime ends when the Procedure ends. Global variables lifetime begins at the start of the script and ends at the end of the script and it can be used by any procedure within the script. Declaring a variable by using the keyword PRIVATE makes the variable global within the script, but if declared using PUBLIC, then all scripts can refer the variable.
-
ClientCertificate is a collection of
A. Server B. Response C. Request D. ObjectContext
-
What happens to a HTML page?
The browser makes a HTTP request; the server gives a HTTP response to the browser and the browser converts into a HTML page.
-
-
What are the types of HTML?
• Static HTML – Browser uses HTTP to request HTML file from the Web Server • Dynamic HTML – Browser uses HTTP to request an executable application rather than a Static HTML file
-
-
ADO is an object model for accessing which of the following?
A. Relational data via Jet. B. Local or SQL data via Jet. C. Relational data via ODBC. D. Non-relational data via DSN-less ODBC. E. All types of data via OLE DB.
-
What does Internet Information Server (IIS) assume to be the default language for Active Server Pages?
A. Jscript B. JavaScript C. JAVA D. VBScript E. ECMAScript
-
How to handle Error in ASP
A. Using On Error Goto <ErrorPart> B. Using On Error Resume C. Using On Error Resume Next D. Using On Error Goto 0
-
-
-
-
-
What is the Default ScriptTimeOut for Server Object?
A. 20 Sec B. 30 Sec C. 60 Sec D. 90 Sec
-
How will you delete a Cookie?
By setting its Expires property to any date prior to today Response.Cookies("cookie name").Expires = Date – 1.
-
-
ASP Interview Questions
Ans