使用网站项目在 Visual Studio Dev Server 上设置静态端口号
我在 Visual Studio 2008 中有一个网站项目(不是 Web 应用程序项目!)
如何将 ASP.NET 开发启动端口设置为网站项目中的静态端口?
I have a WebSite project in Visual Studio 2008 (not a Web Application project!)
How do I set the ASP.NET Development startup port to a static port in a WebSite project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为 ASP.NET 开发服务器指定端口 - WebSite/WebServices 项目
动态端口并选择 False
下拉列表。 这将使
编辑端口号属性。
在端口号中。 单击外部
属性窗格。这将保存属性设置。
Visual Web Developer 中的网站 ASP.NET
开发服务器将侦听指定的端口。
To specify a port for the ASP.NET Development Server - WebSite / WebServices projects
dynamic ports and select False from
the dropdown list. This will enable
editing of the Port number property.
in a port number. Click outside of
the Properties pane.This saves the property settings.
Web site within Visual Web Developer, the ASP.NET
Development Server will listen on the specified port.
按 F4 打开属性窗格。 然后就可以获得 反斜杠17提到的选项
Press F4 to get the Properties Pane. And then one can get the option mentioned by Backslash17
对于网站,无法从 VS 属性页界面分配端口,但如果您从命令行启动网站,则可以分配端口(如果您想调试网站,可以在启动后附加)网站)
WebDev.WebServer40.exe
路径为
“C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\”
或者
“C:\Program Files\Common Files\microsoft shared\DevServer\10.0\”
ASP.NET 开发服务器用法:
WebDev.WebServer40 /port: /path: [/vpath:]
示例:
WebDev.WebServer40 /port:8080 /path:"c:\inetpub\wwwroot\MyApp" /vpath:"/MyApp"
For web site assigning port is not possible form VS Properties Page interface but if you start your web site from command line then you can assign the port (If you want to debug the site you can attach after starting the web site)
WebDev.WebServer40.exe
path is
"C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\"
or
"C:\Program Files\Common Files\microsoft shared\DevServer\10.0\"
ASP.NET Development Server Usage:
WebDev.WebServer40 /port: /path: [/vpath:]
Example:
WebDev.WebServer40 /port:8080 /path:"c:\inetpub\wwwroot\MyApp" /vpath:"/MyApp"
网站项目无法做到这一点,端口号是随机分配的。
这只能通过 Web 应用程序项目来实现
It can't be done with a Website project, the port number is randomly assigned.
It's only possible with a Web App Project