gpt4 book ai didi

javascript - Sys.WebForms 在 Chrome 中未定义

转载 作者:行者123 更新时间:2023-12-03 06:49:56 25 4
gpt4 key购买 nike

我正在我的 Web 应用程序中进行一些部分更新,但收到错误“Sys.WebForms 在 Chrome(最新版本)中未定义”。我在网上搜索了很多,但没有得到任何有效的帮助。

请帮帮我。因为我是 ASP.NetAJAX 的新手。

该段代码如下:

var prm = Sys.WebForms.PageRequestManager.getInstance();

最佳答案

The root problem is that the iPad full-screen app gives a user-agent header that ASP.Net does not recognize, so it believes that the browser does not support ajax. This results in the ScriptManager not including “MicrosoftAjaxWebForms.js” and all sort of other things related to ajax panels not loading.

您可能需要将以下 hack 添加到您的基页来解决该问题:

protected void Page_PreInit(object sender, EventArgs e)
{
if (Request.UserAgent != null && Request.UserAgent.IndexOf("AppleWebKit", StringComparison.CurrentCultureIgnoreCase) > -1)
{
this.ClientTarget = "uplevel";
}
}

更多信息请点击:https://joshmouch.wordpress.com/2012/07/02/sys-webforms-is-undefined-on-ipad/

关于javascript - Sys.WebForms 在 Chrome 中未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37559774/

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