1

i can not reload the WebApplication projectreload the WebApplication, i got this message error message error

i moved the server to another place, so the IP is changed.

i already change the ip on IIS and WebApp config
i already uninstall IIS and reinstall
i already use aspnet_reggis -i

but still i, can not reload the WebApplication.

thanks you in advance

PS: i m sure is because the IP configuration. it work well at my home, now i bring the computer to office...it not work anymore....nothing change just the IP my home is not the same like IP in my office

4

3 回答 3

1

错误消息说:项目 web ESPTEMPS_WebApp 配置为 IIS,找不到网站。

您很可能需要为您的网站配置 IIS。

这是一个有用的链接:http: //msdn.microsoft.com/en-us/library/cek8kw6e.aspx

祝你好运,

于 2012-06-20T12:50:13.903 回答
0

您的应用程序配置为使用 IIS,在您的情况下,您的系统中没有安装 IIS,或者开发人员在开发时使用了 IIS Express。(您需要安装 VS 2010 sp1 才能获得 IIS Express 7.5 与 VS 的集成)

你可以做的是:

关闭您的解决方案并在记事本中打开 csproj 文件(出现问题的项目)

查找并设置这些值:

<UseIIS>False</UseIIS>
<UseIISExpress>False</UseIISExpress>

然后使用 Visual Studio 再次重新打开您的解决方案。您将能够使用 Web 开发人员 Web 服务器进行调试。

于 2012-06-20T13:11:01.197 回答
0

我为你找到了一个很好的参考。它将引导您完成一系列步骤来帮助您配置 IIS。这是链接。请忽略不适用于您的步骤。但基本思想是:

  • 打开项目属性并转到 Web 选项卡
  • 选择本地 IIS Web 服务器。如果它已经被选中,它将显示一个虚拟目录。如果它尚未显示已选中,请提及虚拟目录。
于 2012-06-20T16:00:27.120 回答