本文介绍了PageMethods没有定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个母版页,母版页,我有这样的:

 < ajaxToolkit:ToolkitScriptManager ID =的ScriptManager
                                   =服务器
                                   AsyncPostBackTimeout =99999999
                                   的EnablePageMethods =真/>
 

和我有这样的方法在后面的code:

  [WebMethod的]
公共无效节省preference(字符串graphVersion)
{
    //一些code在这里
}
 

然后,我有这样的javascript函数:

 函数lnkLearnHardWayclick(){
    如果($(#chkDontShowAgain)。ATTR(选中)==检查)
    {
        PageMethods.Save preference(新);
    }
    $(#信息)隐藏()。
    $(#在Hardway)显示()。
}
 

但是,当我点击链接,使一切工作,我得到这个错误:

解决方案

PageMethods 不支持母版页和用户控件。

I have a page with a MasterPage, in the master page, I have this:

 <ajaxToolkit:ToolkitScriptManager ID="scriptManager" 
                                   runat="server" 
                                   AsyncPostBackTimeout="99999999"
                                   EnablePageMethods="true" />

And I have this method in the code behind:

[WebMethod]
public void SavePreference(string graphVersion)
{
    //some code here
}

And then I have this javascript function:

 function lnkLearnHardWayclick(){ 
    if( $("#chkDontShowAgain").attr("checked") == "checked")
    {
        PageMethods.SavePreference('new');
    }
    $("#info").hide();
    $("#hardWay").show();
}

But when I click on the link to make everything work, I get this error:

解决方案

PageMethods are not supported in master pages and user controls.

这篇关于PageMethods没有定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 20:14