IIS7,Default.aspx 错误消息(屏幕截图)

发布于 2024-09-24 14:49:05 字数 309 浏览 1 评论 0原文

我正在通过 Visual Studio 创建一个新的 ASP.net 网站。然后,我尝试运行它生成的 default.aspx 页面,并抛出此错误:

alt text

我尝试删除按照 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:

alt text

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不顾 2024-10-01 14:49:06

当您将站点(包括 .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.

背叛残局 2024-10-01 14:49:06

您到底尝试删除什么?有关特定错误代码 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文