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
Define data caching?
What is intrinsic objects in asp.net?
Which library is used by the testers and developers to develop automated tests and create testing tools?
Explain about Multi-Language integration?
Explain how is a property designated as read-only?
Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?
Differentiate between structure and class.
What is the asp.net control toolkit?
How does a content page differ from a master page?
What is the use of HttpHandlers? When to use this?
What is difference between View State and Hidden Field in ASP.NET?
Can we use MSSql as backend in asp.net...if yes then How.?
What is advantage of asp.net?
What is the state management in asp.net?
What is the default authentication mode for asp.net?