How does ASP work?
- A user requests an .asp page.
- The browser requests the page from the server.
- The server recognizes the page as a .asp page.
- The server executes all of the code on the page, line by line, and produces an HTML page.
- This HTML page is sent back to the user's browser.
- The browser executes any client side scripting (Java Script, for example), then displays the resulting HTML page.