publishing asp.net application to the internet

前端 未结 3 631
[愿得一人]
[愿得一人] 2020-12-07 06:07

i have a web app that runs locally on our network. the way users access it is by going to myserver:80/site/default.aspx

i reconfigured the settings to

3条回答
  •  温柔的废话
    2020-12-07 06:26

    When moving from Visual Studio's built-in web server to IIS, often you need to simply remove the top level directory form the URL:

    ipaddress/default.aspx
    

    or simply

    ipaddress
    

    if default.aspx really is a default.

提交回复
热议问题