WebForm 頁面ajax 請求後臺頁面 方法

勿悲勿急,戒驕戒躁發表於2018-11-22
function ReturnOperation(InventoryID) {
             //入庫 介面
             if (confirm(`你確認?`)) {
                 $.ajax({
                     type: "post",
                     url: "xxx.aspx/InStorage",
                     data: "{InventoryID:`"+InventoryID+"`}",//注意,json 物件外面 加 雙引號  
                     contentType: "application/json",
                     dataType: "json",
                     success: function (r) {
                         if (r.d =="1") {
              alert("入庫成功");
                         } else {
                             alert("入庫失敗");
                         }
                     },
                     error: function (e) {
                         alert("錯誤是:" + e.responseText);
                     }
                 })
             } else {

             }
         }                

  這是前端code

    [WebMethod]  //注意新增引用,方法為靜態
    public static string InStorage(string InventoryID)
    {
  
       return InventoryID;
    }

這是xxx.aspx 頁面內的方法

相關文章