ASP.NET HTTP 错误 500.19 - 内部服务器错误

发布于 2024-12-10 22:30:12 字数 538 浏览 0 评论 0原文

我在 IIS 7 上运行 asp.net 页面时遇到问题。当我尝试在本地主机上运行它时,它显示一个错误页面:

HTTP Error 500.19 - Internal Server Error

无法访问请求的页面,因为该页面的相关配置数据无效。

我已经尝试了在网络上找到的大部分内容,例如更改文件共享(\ASPNET, \IIS_IUSRS)、设置部分name="handlers" 和 section name="modules""Allow" (它使我的 IIS 崩溃,并且我收到错误 "503 - Service不可用”)。我还尝试重新安装整个东西(首先是IIS,然后是ASP.NET)并使用aspnet_regiis -i,但仍然没有成功。

任何帮助将不胜感激。

I have a problem running my asp.net pages on IIS 7. When I try to run it on my local host it displays an error page:

HTTP Error 500.19 - Internal Server Error

The requested page cannot be accessed because the related configuration data for the page is invalid.

I've tried most of the stuff I've found on the web like changing the file sharing(\ASPNET, \IIS_IUSRS), setting permission of section name="handlers" and section name="modules" to "Allow" (it crash my IIS and I get an error "503 - Service unavailable"). I also tried reinstalling the whole thing(IIS first then ASP.NET) and using the aspnet_regiis -i and still no luck.

Any help would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

森末i 2024-12-17 22:30:12

我通过为每个后续名称条目添加条目来解决此问题。例如:

<handlers>
  <remove name="Elmah"/>
  <add name="Elmah" path="elmah.axd" verb="POST,GET,HEAD" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
</handlers>

I resolved this by adding the entry for each of the subsequent name entries. For instance:

<handlers>
  <remove name="Elmah"/>
  <add name="Elmah" path="elmah.axd" verb="POST,GET,HEAD" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
</handlers>
跨年 2024-12-17 22:30:12

当您的配置无效或您的 iis 未正确安装时,就会发生这种情况。

可能这会有所帮助: http://support.microsoft.com /default.aspx?scid=kb;EN-US;929772

或:http://blogs.iis.net/webtopics/archive/2010/03/08/troubleshooting-http-500-19-errors-in-iis-7.aspx

This happens when you have invalid configuration or your iis is not good installed.

may be this will help: http://support.microsoft.com/default.aspx?scid=kb;EN-US;929772

or: http://blogs.iis.net/webtopics/archive/2010/03/08/troubleshooting-http-500-19-errors-in-iis-7.aspx

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