ASP.. NET使用Web.配置以控制主机Web应用程序项目的端口号
本文关键字:Web 项目 应用程序 主机 口号 控制 NET 使用 配置 ASP | 更新日期: 2023-09-27 18:07:22
我试着搜索了一下,但没有找到任何好的解释。
我试图在我的配置文件中配置所有内容,因此用户更容易控制我的应用程序的发布和部署。
在visual studio 2015中,我可以控制端口来托管我的web应用程序:
右键单击Web应用程序项目>属性> Web>项目Url
可以通过配置文件完成吗?
谢谢!
不能通过web完成。但是你可以把它控制为
对于"Web应用程序项目",打开"。
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>21128</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:21128/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
请注意以下行,您可以在其中更改端口并保存它。
<DevelopmentServerPort>21128</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:21128/</IISUrl>
对于"网站项目",您必须打开"。