Describe the role of inetinfo.exe, aspnet_isapi.dll and
aspnet_wp.exe in the page loading process
Answer Posted / srujana
inetinfo.exe is the Microsoft IIS server running, handling
ASP.NET requests among other things. When an ASP.NET request
is received (usually a file with .aspx extension), the ISAPI
filter aspnet_isapi.dll takes care of it by passing the
request to the actual worker process aspnet_wp.exe.
| Is This Answer Correct ? | 28 Yes | 1 No |
Post New Answer View All Answers
What are the disadvantages of asp.net?
If you want to bind the columns manually within the asp:datagrid tags what kind of tags you have to add.
Explain the difference between asp & asp.net.
What are the parts of an http response?
Explain Apache web servers ? How can you get ASP.NET running in Apache web servers - why should you do this?
What is a 404 redirect?
How can we use Web API with ASP.NET Web Form?
What setting must be added in the configuration file to deny a particular user from accessing the secured resources?
How to prevent client side validation from the ASP.NET validation controls?
How does the cookies work in asp.net?
how to retrieve property settings from xml .config file.
Can a .net web application consume java web service?
From which base class all web forms are inherited?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.