通过互联网访问我的VS2013互联网应用程序

时间:2014-08-25 10:08:45

标签: c# browser localhost asp.net-mvc-5 iis-express

我创建了一个C#MVC 5 Internet应用程序,我可以通过Web浏览器中的localhost地址访问该应用程序。当我的计算机连接到互联网(通过路由器)时,是否可以从我的开发计算机以外的其他计算机连接到我的互联网应用程序?

我需要使用哪个地址?我是否需要更改任何Windows设置才能执行此操作?

我可以请一点帮忙吗?

提前致谢

1 个答案:

答案 0 :(得分:0)

1)以管理员模式运行Visual Studios

2)更改了绑定协议,并按照建议http://johan.driessen.se/posts/Accessing-an-IIS-Express-site-from-a-remote-computer

允许传入方向

- 但之后,我的服务不可用(503)错误

3)所以我遵循了这个:IIS Express启用外部请求 - 503只添加了端口协议和端口:ip协议,

<bindings>
    <binding protocol="http" bindingInformation=":1904:" />
    <binding protocol="http" bindingInformation=":1904:10.1.10.123" />
</bindings>

此处还有另一篇文章:http://johan.driessen.se/posts/Accessing-an-IIS-Express-site-from-a-remote-computer