网页打开显示:无法显示 XML 页 怎么办
的有关信息介绍如下:一般情况下,安装VS2005时,安装程序会自动配置本地IIS服务使用ASP.NET2.0。我们可以直接在VS2005下编写或调试WEB应用程序。但是,如果我们先安装了VS2005,然后才安装的IIS。这时,IIS会设置为使用ASP.NET1.0。我们在VS2005中建立WEB程序是会出现下面的提示:Thesite'http://localhost/xxxxxx'hasnotbeenconfiguredforusewithASP.NET2.0.MicrosoftVisualStudiohasbeendesignedforusewithASP.NET2.0;ifnotconfiguredsomefeaturesmaymakeincorrectassumptions,andpagesdesignedwiththetoolmaynotrendercorrectly.并且不能自动配置成功。这时,只需要在VisualStudio2005CommandPrompt中执行下面的命令.解决办法:运行vs2005命令行(开始、所有程序、vs2005、tools,写得不准确),运行aspnet_regiis.exe/i,就ok了。也就是在IIS中安装ASP.NET2.0即可。