创build虚拟目录失败,出现错误

我无法解决这个问题

在这里输入图像说明

我build议我必须更改c:\Windows\System32\drivers\etc\hosts文件,然后添加

 # localhost name resolution is handled within DNS itself. 

下一行:

 127.0.0.1 mysite.dev 

但它没有帮助。 有什么build议么?

当我尝试在Microsoft Visual Studio 2012中打开网站项目时出现错误。

通常情况下,至less在我的情况下,这种情况发生在*.csproj.user文件位于项目目录中并且其中包含<UseIISExpress>true</UseIISExpress>的情况下。

我已经find了解决scheme。 我只需要编辑C:\Users\Administrator\Documents\IISExpress\config\applicationhost.config文件,将我的网站添加到<sites>节点。

您可以select在本地安装IIS,并在.csproj文件上编辑几个标签。 打开你的csproj文件并转到<VisualStudio>部分,然后find标签<UseIIS>True</UseIIS>它必须设置为true,然后转到标签<IISUrl>并设置应用程序所在的URL地址供testing用:

 <VisualStudio> <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> <WebProjectProperties> <UseIIS>True</UseIIS> <AutoAssignPort>False</AutoAssignPort> <DevelopmentServerPort></DevelopmentServerPort> <DevelopmentServerVPath>/</DevelopmentServerVPath> **<IISUrl>http://localhost/myWebSiteAppSample</IISUrl>** <NTLMAuthentication>False</NTLMAuthentication> <UseCustomServer>False</UseCustomServer> <CustomServerUrl> </CustomServerUrl> <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> </WebProjectProperties> </FlavorProperties> </VisualStudio> 

那就是。 现在,您可以正常加载您的项目。

问题是您的项目设置将在本地IIS中执行,并且指定的URL不存在。

有些选项可以解决这个问题。

选项1 :(使用IIS Express)

1.)打开你的Web项目.csproj文件为XAML或在记事本中。

2.)find这些属性,并根据您的喜好设置。

UseIIS = false

UseIISExpress = true

就是这样。

选项2 :(使用本地IIS)

按照选项1的步骤,但更改以下属性。

UseIIS = true

IISUrl = https:// localhost

UseIISExpress = false

  1. 打开控制面板中的“Internet信息服务”窗口function。
  2. 打开“.csproj”文件并find
  3. 根据您的要求修改此行。 HTTP://本地主机:777 /
  4. 现在打开项目/解决scheme
  5. 如果再次加载失败,只需右键单击解决scheme,然后select“重新加载项目”。

我不知道为什么,我的applicationhost.config文件完全从我的C:\Users\Administrator\Documents\IISExpress\config\文件夹中C:\Users\Administrator\Documents\IISExpress\config\

复制/粘贴C:\inetpub\history\applicationhost.config到该文件夹​​似乎解决了我的问题。

从这里得到了主意。

我正在面对同样的问题,因为我的networking密码changed.I改变了我的NetExtendorlogin密码,但我必须用我的笔记本电脑login旧密码。

尝试这些步骤来解决这个问题:

login到计算机与任何密码工程login到任何密码的作品ctl-alt-del的vpnlocking电脑,然后使用新的密码来解锁它

它为我工作:-)

谢谢!