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
Which type of state management is provided by Query String in ASP.NET?
What is http session state?
Explain about asp.net 2.0 themes?
Differentiate between client-side and server-side validations in web pages.
What is the used of "ispostback" property?
Do you support digital rights management to protect my videos?
What are the advantages of the code-behind feature?
What is event bubbling?
How will you load dynamic assembly?
What is web configuration file and how to use in web application
What are the different types of sessions in asp.net?
What is a proxy in web service?
In a Repeater control how one can provide an alternating color scheme ?
Explain a program using razor view engine to create a simple application? : asp.net mvc
Explain the difference between webfarm and webgardens in .net?