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

Resource Files: How to use the resource files, how to know which language to use?

1 Answers   TCS,


What is the use of following Statement Response.Expires=120 A.The page will be removed form cache after 120 Hours B.The page will be removed form cache after 120 Sec C.The page will be removed form cache before 120 Min D.The page will be removed form cache after 2 Hours

1 Answers  


What are the components of asp?

1 Answers  


Explain the difference between asp and html? Or why asp is better than html?

1 Answers  


How do I make it so that code runs when the security system is stopping it?

1 Answers  


how to code in asp.net for button?

1 Answers  


Define a variable?

1 Answers  


What is a Virtual Directory?

1 Answers  


Why asp is used?

1 Answers  


What opens asp files?

1 Answers  


Is asp a language?

1 Answers  


Explain the post & get method?

1 Answers  


Categories