1
Reply

Why their is no Main() method in ASP .NET Web Application ?

    When you execute a .NET console application, the common language runtime (CLR) looks for a specific entry point i.e. Your Static Main().But ASPNET loads in the browser and passes through any incoming requests to the so-called "HTTP pipeline. The ASP.NET worker process activates the HTTP pipeline by creating a new instance of the HttpRuntime class and then calling its ProcessRequest method.