配置 Visual Studio 2010 Web 应用程序项目在 localhost:8080 上运行
我使用本地 IIS 而不是 VS Web 服务器,但不是默认网站上的虚拟目录,我想将 Web 应用程序项目配置为在端口 8080 上的自己的 IIS 网站中运行。我该如何执行此操作?
I am using local IIS instead of the VS Web Server but instead of a virtual directory on the Default Web Site, I want to configure my web application project to run in its own IIS Web Site on port 8080. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 IIS 上设置一个网站,使用端口 8080。
将该网站的主目录指向 Web 应用程序项目目录。
要在 IIS 上进行调试,请附加到工作进程 (
w3wp.exe
)。Setup a website on IIS, using port 8080.
Point the home directory of this site to the web application project directory.
To debug on IIS, attach to the worker process (
w3wp.exe
).查看您的 Web 应用程序项目属性。在“Web”选项卡下,您可以选择“使用本地 IIS Web 服务器”,然后为您的应用程序创建一个虚拟目录。您必须在 iis 端配置的唯一部分是您网站的端口号。
Take a look into your Web Application project properties. Under the tab "Web" you can select "Use Local IIS Web server" and create from this point a virtual directory for your app. The only part you have to configure on the iis side is the port number for your website.