When you create a new website on IIS, you get to choose between an "Application" and a "Virtual Directory". What is the difference between those two options?
feedback
|
|
There are a few differences, here are the biggest:
These are the two biggest differences in my opinion, although there are other small ones as well. | ||||
|
feedback
|
|
A virtual directory is just a pointer to where web pages are stored. A Application reserves memory in IIS for your web pages. If you are attempting to run ASP pages and plan to make use of Session variables and the such then you must use an application. An Applicaiton can make use of a virtual directory or it may just exist within the default web sites directory (inetpub/wwwroot/) | ||||
|
feedback
|