gpt4 book ai didi

c# - 得到一个错误,可能是WebResource.axd

转载 作者:行者123 更新时间:2023-11-30 18:34:08 25 4
gpt4 key购买 nike

我遇到了一些麻烦,我认为问题出在 Webresource.axd 文件上。我在 .NET 4.5 和 Visual Studio 2012 Web Developer Express 中使用 ASP.NET Web 窗体。

我在我的 aspx 文件中声明了一个 TreeView ,并在代码隐藏中将数据分配给 TreeView 。这是可行的,但我变成了一些丢失的图片,但我使用的是标准的 Systemset。 so it it shown in the Browser

这是我的代码:

.aspx:

<asp:TreeView ID="treeview" runat="server" ShowLines="True" ImageSet="Arrows">

</asp:TreeView>

.aspx.cs:

protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Logic.TreeView("FILE", treeview);
}
}

网络配置:

<?xml version="1.0" encoding="utf-8"?>

<!--
Weitere Informationen zum Konfigurieren der ASP.NET-Anwendung finden Sie unter
http://go.microsoft.com/fwlink/?LinkId=169433
-->

<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />

<httpHandlers>
<add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="true"/>
</httpHandlers>

</system.web>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" crossDomainScriptAccessEnabled="true"/>
</webHttpEndpoint>
<webScriptEndpoint>
<standardEndpoint crossDomainScriptAccessEnabled="true"/>
</webScriptEndpoint>
</standardEndpoints>
</system.serviceModel>


<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>


</configuration>

当我开始调试时,我得到一个 JS 错误,但只在 IE 中,而不是在 Chrome 中。Microsoft JScript 中的运行时错误:“WebForm_InitCallback”未定义

谁能帮忙,我真的不知道如何解决这个问题。

最佳答案

首先要尝试一些简单的事情:

文件是否在指定的位置(可能使用 Firebug 或类似的东西来查看元素以找到位置,可能会与 ~/./路径混淆)。

如果您使用的是服务器操作系统,请在服务器管理器中勾选“静态内容” Angular 色,否则将不会显示 CSS 和图像。

关于c# - 得到一个错误,可能是WebResource.axd,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16518630/

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