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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.