我想使用以下代码在asp.net c#application中调用web方法
jQuery的:
jQuery.ajax({ url: 'AddToCart.aspx/AddTo_Cart',type: "POST",data: "{'quantity' : " + total_qty + ",'itemId':" + itemId + "}",contentType: "application/json; charset=utf-8",dataType: "json",beforeSend: function () { alert("Start!!! "); },success: function (data) { alert("a"); },failure: function (msg) { alert("Sorry!!! "); } });
C#代码:
[System.Web.Services.WebMethod] public static string AddTo_Cart(int quantity,int itemId) { SpiritsShared.ShoppingCart.AddItem(itemId,quantity); return "Add"; }