Describe the role of inetinfo.exe, aspnet_isapi.dll
andaspnet_wp.exe in the page loading process?
Answer Posted / radha
inetinfo.exe is the microsoft server runing , handling
ASP.NET request and other things.when the asp.net request
is recieved (usually the it gets .aspx extention) 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 ? | 5 Yes | 1 No |
Post New Answer View All Answers
Define a multilingual website?
What is the full form of asp.net?
What is state management in .net?
Give 2 examples for scenarios when routing is not applied?
Explain how asp.net page works?
Write a code snippet to implement the indentation in json in web api.
What are the differences between primary foreign and unique keys?
What is an il?
Differentiate between authentication and authorization.
Explain difference between dataset and datareader?
What is form submit?
What are web beacons used for?
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.
If 200 is for all successful operation then why do we have 201 response codes?
What is the use of session in web application?