ASP.NET 中的页面方法

发布于 2024-10-04 18:23:31 字数 423 浏览 4 评论 0原文

我的 Pagemethod 实现在 Chrome 浏览器中不起作用。 我在 VS 2008 中开发了 ASP.NET 3.5 Web 应用程序。

下面的代码在 Chrome 或 Safari 中不起作用:

function FetchDataOnTabChange(ucName)
{ 
    PageMethods.FetchData(ucName, OnSuccessFetchDataOnTabChange, OnErrorFetchDataOnTabChange);
}

function OnErrorFetchDataOnTabChange(error)
{   
   //Do something
}

function OnSuccessFetchDataOnTabChange(result)
{
   //Do something  
}

My Pagemethod implementation is not working in Chrome browser.
I have ASP.NET 3.5 web application developed in VS 2008.

The code below not working in chrome or Safari:

function FetchDataOnTabChange(ucName)
{ 
    PageMethods.FetchData(ucName, OnSuccessFetchDataOnTabChange, OnErrorFetchDataOnTabChange);
}

function OnErrorFetchDataOnTabChange(error)
{   
   //Do something
}

function OnSuccessFetchDataOnTabChange(result)
{
   //Do something  
}

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

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

发布评论

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

评论(1

起风了 2024-10-11 18:23:31

按照以下步骤,这应该适用于所有浏览器:

  • 页面方法必须具有
    系统.Web.服务.WebMethod
    属性。 [WebMethod]
  • 页面方法必须是公共的。
    [WebMethod] public ...
  • 页面方法必须是静态的。
    [WebMethod] public static ...
  • 页面方法必须定义在
    页面(内联或在
    代码隐藏)。无法定义
    在控件、母版页或基础页中
    页。
  • ASP.NET AJAX 脚本管理器必须
    将 EnablePageMethods 设置为 true。

这是来自一个工作应用程序

aspx页面:

/* the script manager could also be in a master page with no issues */
<asp:ScriptManager ID="smMain" runat="server" EnablePageMethods="true" />
<script type="text/javascript">
    function GetDetails(Id) {
        PageMethods.GetDetails(doorId);
    }
</script>

代码隐藏:

[System.Web.Services.WebMethod]
public static void GetDetails(string Id)
{

}

This should work in all browsers by following the steps below:

  • The page method must have the
    System.Web.Services.WebMethod
    attribute. [WebMethod]
  • The page method must be public.
    [WebMethod] public ...
  • The page method must be static.
    [WebMethod] public static ...
  • The page method must be defined on
    the page (either inline or in the
    code-behind). It cannot be defined
    in a control, master page, or base
    page.
  • The ASP.NET AJAX Script Manager must
    have EnablePageMethods set to true.

This is from a working application

aspx page:

/* the script manager could also be in a master page with no issues */
<asp:ScriptManager ID="smMain" runat="server" EnablePageMethods="true" />
<script type="text/javascript">
    function GetDetails(Id) {
        PageMethods.GetDetails(doorId);
    }
</script>

code behind:

[System.Web.Services.WebMethod]
public static void GetDetails(string Id)
{

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