I have win server 2003 and IIS 6. After publish my web app to IIS and set port 8080 I can't see web site
UPDATE: I solve my problem with connect to port 8080, after type http://XXX.XXX.X.XX:8080/ I see this
Thursday, August 19, 2010 9:26 AM App_Data
Thursday, August 19, 2010 9:26 AM bin Thursday, August 19, 2010 9:26 AM Content Thursday, August 19, 2010 9:11 AM 开发者_如何学运维 97 Global.asax Thursday, August 19, 2010 9:26 AM Scripts Thursday, August 19, 2010 9:26 AM Views Thursday, August 19, 2010 9:11 AM 11799 Web.confighow can I view my site
Looks like a combination of the following issues:
- directory browsing is enabled
- no default document is specified
- possibly the incorrect version of .net is associated with the website.
It looks like you are using MVC (Views directory) - is your site configured correctly for MVC and does your server have all the right frameworks installed and bound to IIS (you may need to use aspnet_regiis
for each of the required frameworks)
if you created the site using visual studio try using its "Deploy Website" feature as it should ensure all the settings for your site are correct for it to be displayed.
Have a look here http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx for an IIS 6.0 MVC walk through.
Does the server have an active firewall?
Have you checked IIS if the website you published is created and active?
Try to set a default webpage. However your list does not show any ".aspx" page so it is likely that your publication went wrong.
精彩评论