用把工程文件(.vcxproj文件打开找到如下代码片段 ,请将下面片段代码中的(最好用notepad++打开)
<UseIIS>True</UseIIS>、
<AutoAssignPort>True</AutoAssignPort>
节点的值改为 False
<WebProjectProperties> <UseIIS>True</UseIIS> <AutoAssignPort>True</AutoAssignPort> <DevelopmentServerPort>0</DevelopmentServerPort> <DevelopmentServerVPath>/</DevelopmentServerVPath> <IISUrl>http://localhost:6365/</IISUrl> <NTLMAuthentication>False</NTLMAuthentication> <UseCustomServer>False</UseCustomServer> <CustomServerUrl> </CustomServerUrl> <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> </WebProjectProperties>
IIS 网站添加默认文档时提示“由于权限不足而无法写入配置文件”
在对网站添加默认文档时提示“由于权限不足而无法写入配置文件”。
其实这不是权限不足造成的,而是网站的配置文件属性是“只读”造成的。
右击网站配置文件--属性--属性项里去掉只读--确定。
标签:Web,False,IIS,配置文件,项目,--,打开,True From: https://www.cnblogs.com/liuqifeng/p/17711644.html