If i create a web application inside Visual Studio called MyWebApp, how can I make sure it can be accessed at the following address:
NO PORTS required
thanks
VS 2010 IIS 7.0 Windows 7
If i create a web application inside Visual Studio called MyWebApp, how can I make sure it can be accessed at the following address:
NO PORTS required
thanks
VS 2010 IIS 7.0 Windows 7
Add that application to IIS (with the name "MyWebApp"), make sure the root folder for the application is pointing to the root folder of the project on your computer.
Http is by default run on port tcp/80.
writing http://address.com/ is the same as http://address.com:80/
If IIS is configured to use the default port of 80, then you do not need to specify anything.