Visual Studio 将我的本地 IIS 网站配置为 ASP.NET 网站
我们在 IIS 7 上使用 Visual Studio 2008,在某些计算机上,我们无法让 Visual Studio 将我们的网站识别为 IIS 网站。在大多数计算机上,它配置正确,在 http://localhost/websitename 下显示和运行。但在几台机器上 - 使用相同的解决方案文件 - 它将其加载为目录/asp.net 站点:在 VS 中,它显示为 c:...\foldername,运行时,它显示为 http://localhost:randomportnumber/网站名称。
我们尝试通过“文件”->“删除”然后重新添加该站点。打开网站->本地 IIS,但当我们选择站点时,它会自动将其更改为 asp.net 站点。
提前致谢。
We are using Visual Studio 2008 on IIS 7, and on some machines we are having trouble getting Visual Studio to recognize our website as an IIS website. On most machines it is configured properly, displaying and running under http://localhost/websitename. But on a couple of machines - using the same solution file - it loads it as a directory/asp.net site: in VS it appears as c:...\foldername, and when running it, it comes up as http://localhost:randomportnumber/websitename.
We tried removing and then re-adding the site through the File-> Open Website-> Local IIS, but when we select the site it automatically changes it to a asp.net site.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在项目的属性中,您可以指定是否使用IIS或内置的ASP.NET服务器。
In the properties of the project, you can specify whether or not to use IIS or the built-in ASP.NET server.
当您调试网站并在本地后看到奇数端口号时,您正在运行 Visual Studio Web 服务器 Cassini,而不是通过 IIS。
您可以在访问网站上的属性设置时进行配置。
When you debug a website and you see the odd port number after local, you are running the visual studio web server Cassini and not through IIS.
You can configure this when you go to property settings on your website.