gpt4 book ai didi

asp.net - 未找到 WebResource.axd

转载 作者:行者123 更新时间:2023-12-04 01:42:58 31 4
gpt4 key购买 nike

我无法在我的网站上加载脚本文件。其他一切正常。但是,我还没有尝试过 ScriptResource.axd。

我已经验证了这个问题在 cassini 和 IIS7 上都存在。

我已经验证了我的 64 位 4.0 web.config 包含 WebResource.axd 的映射。

我的系统时间是正确的(我听说这可能有问题)。

我已经验证它在其他项目中有效,所以罪魁祸首必须是我的 Web 应用程序。

我的 Web 应用程序是 4.0 MVC3 Web 应用程序。

我的 web.config 可以找到 here .

这个错误正在杀死我!任何帮助,将不胜感激!

Resource not found

最佳答案

您的 web.config 文件很棒(这不是赞美):在 .NET Framework 4.0 中,它应该更短/更轻。
我认为您的处理程序声明在错误的部分:

<system.webServer>
<handlers>
<add name="WebResource" path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" />
</handlers>
</system.webServer>

通常,WebResource.axd 处理程序在“system.web”部分声明:
<system.web>
<httpHandlers>
<add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />
</httpHandlers>
</system.web>

关于asp.net - 未找到 WebResource.axd,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8470080/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com