Web Application root and starting point

By default, your root directory is set up as an application root or application starting point. However, you can run more than one application on your web site.

Every file and directory that is beneath the "starting point" directory in your Web site is considered part of the application until another "starting point" directory is found.

With each application, IIS will have its own application object accessible through ASP or ASP.net. You can configure application start and end behavior within either global.asa or global.asax. (Note that global.asa and global.asax can only exist in an application root).

To create a web application, you can use the Web Application Tool in the control panel. See this Knowledge Base article for details

Visual Studio .NET Users

If you use Visual Studio .NET, each project under the root (e.g., http://www.YourHostedDomainName.com/webapplication) is set up as an application. VS.net will automatically create the application root when you create or copy a project. See the Knowledge Base articles, How to create a new web project with Visual Studio .NET and How to deploy a Visual Studio .NET web project for more details.