what is execution of asp page



what is execution of asp page..

Answer / roopali mishra

When a client browser requests an ASP page, a number of
events occur in the following sequence:

1. The client requests an ASP page by sending an HTTP
Request to the Web server.

2. Because the page has the .asp extension, the service
(IIS 5.0) recognizes it as a scriptmapped file, and sends
the file to the appropriate ISAPI extension (in this case,
to Asp.dll) for processing. (This step does not occur when
the client requests an HTML file.)

3. The ASP ISAPI processes any server-side include
directives first, before any serverside script is compiled.
Next, the script is executed, and dynamic text, if any, is
incorporated into the page that will be returned to the
client. (This step only happens when the page is first
requested. Previously compiled pages are retrieved from a
serverside cache for faster performance.)

4. The server creates the resulting HTML page to be sent
back to the client. The page output is sent incrementally
as the page is generated, or all at once if the response is
buffered.

5. Once the client receives the ASP page, it loads any
client-side objects and Java applets, executes any
immediate client-side script code and displays the Web page
according to the HTML specification.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More ASP Interview Questions

Explain how do you initiate a string without escaping each backslash?

0 Answers  


What is the maximum size of an array in asp?

0 Answers  


Explain how to display images using response object?

0 Answers  


difference between POST & GET methods?

1 Answers  


Define unmanaged code?

0 Answers  






Define querystring collection?

0 Answers  


How do I administer security for my machine? For an enterprise?

0 Answers  


Name the collections of session object?

0 Answers  


can any one send me some real time sap crm interview question along with answer .my email id is psundeep@ymail.com

0 Answers   IBM,


how can i show the data of sql table in different dropdown list?

1 Answers  


Why does my code get a security exception when I run it from a network shared drive?

0 Answers  


difference between html and asp?

0 Answers   Polycom,


Categories