Web Application works in Client/Server architecture. On Client side you need a web browser that understands HTML and on Server side you need a Web Server to host the application
ASP .NET Web application runs under Microsoft Internet Information Service (IIS).
ASP .NET Web application runs under Microsoft Internet Information Service (IIS).
Let's understand how a request is being handled in web application.
When a user requests for a URL in a web browser, the request goes to the web server (in our case it is IIS) through internet using HTTP protocol (Hyper Text Transfer Protocol). Once the web server, receives the requests it process that request (For example if the data need to be retrieved from database, IIS contacts the application DLL to get the data from database) and send the HTML content back to the browser.
Protocol - Set of standard rules, that describes how two or more items communicate over internet.
Protocol - Set of standard rules, that describes how two or more items communicate over internet.