IIS7,Default.aspx 错误消息(屏幕截图)
我正在通过 Visual Studio 创建一个新的 ASP.net 网站。然后,我尝试运行它生成的 default.aspx 页面,并抛出此错误:
我尝试删除按照 MSDN 建议的受影响的线路,但无济于事!我使用的是 Windows 7,安装了 ASP.net
有什么想法吗?
I'm creating a new ASP.net website via Visual Studio. I then try to run the default.aspx page it generates, and it throws this error:
I've tried deleting the affected lines as suggested by MSDN but to no avail! I am on Windows 7, with ASP.net installed
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您将站点(包括 .net 3.5 中的 web.config)分配给在 4.0 中运行的应用程序池时,这是一个常见错误。它会导致 web.config 中的某些条目重复,因此您可以:1) 清理 web.config 以删除这些重复条目,或 2) 将应用程序池更改为使用 .net 2.0 的应用程序池。
This is a common error when you assign the Site (that includes a web.config from .net 3.5) to an application pool that is running in 4.0. It causes some of the entries in web.config to be duplicated, so you can: 1) clean up the web.config to remove those duplicated entries, or 2) change the application pool to one that is using .net 2.0.
您到底尝试删除什么?有关特定错误代码
0x8020700b7
的 MSDN 文章讨论了删除 ApplicationHost.config 文件中的重复条目。但据我所知,上面的错误消息帖子谈到了 web.config,这是两个完全不同的文件。标记的第 15 行应该位于 web.config 中。标记的重复条目应该在哪里。
What exactly have you tried to delete? The MSDN article about the specific error code
0x8020700b7
talks about deleting duplicate entrys in the ApplicationHost.config file. But your error message postet above talks about the web.config which are two completely different files as far as I know.The marked line 15 should be in the web.config. where the marked duplicate entry should be.