I have an ASP.NET web application hosted on IIS 7. Currently, I access this application by visiting: [http://]//machinename/ApplicationName/Default.aspx.
I want to have multiple versions of the same application hosted in IIS. My goal is to let a user visit urls in the form of [http:]//machinename/ApplicationName/x.y/Default.aspx. So for instance, I want to visit:
[http:]//machinename/ApplicationName/1.0/Default.aspx [http:]//machinename/ApplicationName/1.1/Default.aspx
If the user visits the version in 1.0 they would see the 1.0 version of my application. If they visit the version in 1.1 they would see the 1.1 version of my application. How do I set this up in IIS 7?