What is the relationship between IIS and ASP.NET in the
generation of dynamic Web sites?
Answer Posted / raghumadhav tirunagari
When a user requests a static HTML page by clicking on a
link or entering the address, IIS running on the server
finds the page and sends it back to the client. However, if
the user requests a dynamic page, IIS sends the file to the
ASP.NET engine. The ASP.NET engine processes the page and
returns the results as pure HTML to IIS. IIS then returns
the HTML page to the client. That's why when you view the
source code of an ASP.NET page from within a Web browser,
you can't tell which information is dynamic and which is
static. The browser doesn't care if a page is dynamic or
static as long as it consists of HTML. IIS knows to send an
.aspx page (the asp.net extension) to the ASP.NET engine
because IIS maintains a list of application mappings. The
mappings indicate which program a file extension is
associated with.
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
What is the use of service provider?
What is custom events?
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
What is the postback property in asp.net?
In a Repeater control how one can provide an alternating color scheme ?
What are tuples?
What is server side session management?
Can asp.net work on an nt server?
Out of ASP or ASP.NET which one is stateless?
Explain the difference between dataset and datareader.
Just by seeing the signature of the bean how can you specify whether it is a stateful or stateless session bean?
What is Model-View-View Model?
What is GAC in ASP.NET 2.0
What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
What is ascx?