PageMethods is not Defined in ASPX Page

前端 未结 4 913
猫巷女王i
猫巷女王i 2020-12-17 10:32

I\'m looking at some old code that I can only assume worked at one time.

MyPage.aspx:

function GetCompanyList(officeId) {
    var co         


        
4条回答
  •  有刺的猬
    2020-12-17 11:09

    maybe you are using Routing in your pages. then must be set real path after call PageMethods:

    PageMethods.set_path("<%=ResolveUrl("~/YourPage.aspx")%>");
    PageMethods.YourMethod(param, OnSuccess, OnError);
    

提交回复
热议问题