I just registered a domain through discountasp.net. When I upload an asp.net web application, in order for me to run it, I need to install the folder the web app is located in as an application. I am still unclear on why this needs to be done? Can someone provide an explanation.
Well,
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/1d1c9a73-b4c5-4cfb-ad69-b77fa2e17e19.mspx?mfr=true
is some good initial reading.
Making it an application will allow it to spawn worker threads that are isolated from other applications on your web server (assuming they are using different pools). This is good for security and performance. It's really a lot more in depth that that, but it's a good starting point.