10
JQuery ajax çağrısına Birden Çok Parametre geçirin
Bir aspx sayfasında bir web yöntemi çağırmak için aşağıdaki jquery koduna sahibim $.ajax({ type: "POST", url: "popup.aspx/GetJewellerAssets", contentType: "application/json; charset=utf-8", data: '{"jewellerId":' + filter + '}', dataType: "json", success: AjaxSucceeded, error: AjaxFailed }); ve işte web yöntemi imzası [WebMethod] public static string GetJewellerAssets(int jewellerId) { Bu iyi çalışıyor. Ama şimdi …