GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Microsoft  >  ASP.NET 2.0
Go To First  |  Previous Question  |  Next Question 
 ASP.NET 2.0  |  Question 89 of 161    Print  
which dll handles the request of .aspx page?

  
Total Answers and Comments: 3 Last Update: September 17, 2006     Asked by: mdchaus 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
December 05, 2005 02:26:46   #1  
Abul Asim M. R. Qarshi        

RE: which dll handles the request of .aspx page?...

aspnet_isapi.dll handles all request to aspx file. actually all dotnet related file including .soap .axd .ascx files are handled by aspnet_isapi.dll .

Abul Asim M. R. Qarshi
Software Engineer
Merced Solutions Inc.
www.merced-solutions.com


 
Is this answer useful? Yes | No
December 07, 2005 07:25:54   #2  
surya        

RE: which dll handles the request of .aspx page?...

When the Internet Information Service process (inetinfo.exe) receives an HTTP request it uses the filename extension of the requested resource to determine which Internet Server Application Programming Interface (ISAPI) program to run to process the request. When the request is for an ASP.NET page (.aspx file) IIS passes the request to the ISAPI DLL capable of handling the request for ASP.NET pages which is aspnet_isapi.dll.


 
Is this answer useful? Yes | No
September 17, 2006 01:57:10   #3  
anishcp Member Since: August 2006   Contribution: 6    

RE: which dll handles the request of .aspx page?...

When a browser initially calls up an ASP.NET page IIS recognizes that this is a ASPX file request and lets the ASP.NET module (aspnet_isapi.dll) deal with it. The aspnet_isapi.dll places the Aspx file we request into a new class definition. This new class is defined in a namespace called ASP; so the contents of the file say myPage.aspx end up in a class called Asp.myPage.aspx . The ASP Class inherits from the page class.

The new Asp class is then instantiated as an object in the CLR. A render method is then called on our new object that returns appropriated HTML via the aspnet_isapi.dll to IIS which then sends the HTML to the client than originally made the request.


 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape