IIS wont serve up web pages
-
I have developed a test website in vstudio 2008. I published the site to http://localHost/WebAndASP/ I run the Web program in IDE and it opens up browser window to http://localhost:3400/ and displays my page I can also open up a browser window manually type in the above and view the page. However I cannot do http://localhost/WebAndASP/Default.aspx IIS has Website entry named WebAndASP. It is configures with low priority. The directory security is set to Anonymous access and Integrated Windows Authentication When I right click on the Website node in IIS(5.1 btw) I get the same http 500 internal server error message. Strange that it can execute with the :3400 but not locally. I would like IIS to work without having to supply the :3400 or any of the other values Help is greatly appreciated Dale
-
I have developed a test website in vstudio 2008. I published the site to http://localHost/WebAndASP/ I run the Web program in IDE and it opens up browser window to http://localhost:3400/ and displays my page I can also open up a browser window manually type in the above and view the page. However I cannot do http://localhost/WebAndASP/Default.aspx IIS has Website entry named WebAndASP. It is configures with low priority. The directory security is set to Anonymous access and Integrated Windows Authentication When I right click on the Website node in IIS(5.1 btw) I get the same http 500 internal server error message. Strange that it can execute with the :3400 but not locally. I would like IIS to work without having to supply the :3400 or any of the other values Help is greatly appreciated Dale
How did you deployed your application on IIS ? Can you please check in which Port your web sites is running ? By default it should be 80. Thank you !!
cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net View My Recent Article
-
How did you deployed your application on IIS ? Can you please check in which Port your web sites is running ? By default it should be 80. Thank you !!
cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net View My Recent Article
Yes its port 80 The port numbers assigned are random, based on what VStudio decides to use for its virtual server. however once I publish the web app to the wwwroot directory, http://localhost/AppName should be all thats required, to the best of my knowledge.