Ajax使用PageMethods調用後台方法

來源:互聯網
上載者:User

很多東西都不會,從頭學起;這裡貼使用PageMethods調用後台方法

在後台上寫兩個方法,一個是有參,一個無參

 

      [System.Web.Services.WebMethod]
        [System.Web.Script.Services.ScriptMethod]
        public static object GetStatus()
        {
            return System.DateTime.Now.ToString();
        }

        [System.Web.Services.WebMethod]
        [System.Web.Script.Services.ScriptMethod]
        public static object SetName(string firstName, string lastName)
        {
            return firstName + " " + lastName;
        }

 

在指令碼上進行調用

 

<script language="javascript" type="text/javascript">
       /*
     注意事項: 

    (a)需要調用的伺服器端方法必須以System.Web.Services.WebMethod特性進行標記
     (b)需要調用的伺服器端方法必須為公用靜態方法
     (c)需要調用的伺服器端方法應寫在.aspx頁面(或對應的後台代碼檔案)中,不應寫在使用者控制項中
       */

       window.setInterval(function () {
           PageMethods.GetStatus(function (result) {
               if (result) {
                   alert(result);//彈出目前時間
               }
           });
       }, 3000);

       window.onload = function () {
           PageMethods.SetName("zhang", "jinshan", function (result) {
               alert(result);//彈出姓名
           });
       }

       //以下的寫法是錯誤的:直接
         PageMethods.SetName("zhang", "jinshan", function (result) {
               alert(result);//彈出姓名
           });
    </script>

在表單中需要添加 EnablePageMethods="true"

 

 <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">
    </asp:ScriptManager>
    

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.