Có bro nào biết cái vụ này thì chỉ mình với. Mình dùng JQuery ajax để gọi 1 asp.net webservice. Lúc bt chỉ để notation là [WebMethod] thì gọi bình thường, nhưng sau khi mình sửa lại thành [WebMethod(EnableSession=true)] thì sinh ra lỗi 500 time out
Ai có giải pháp nào cho trường hợp này không, giúp mình tay . Đang gấp quá
Đoạn javascript của mình
Ai có giải pháp nào cho trường hợp này không, giúp mình tay . Đang gấp quá
Đoạn javascript của mình
Code:
$(document).ready(function () { $("#save_btn").click(function () { var maban_arr = new Array(); var giam_arr = new Array(); $("input:checkbox[class=child_chb]:checked").each(function () { maban_arr.push($(this).val()); giam_arr.push($(this).nextAll('input:text').val()); }); alert(maban_arr.join("+")); alert(giam_arr.join('+')); $.ajax({ type:"POST", contentType: "application/json; charset=utf-8", data:"{maban_arr:maban_arr,giamgia_arr:giam_arr}", url:"quanlykhuyenmaiban.aspx/Luu_Ban", dataType: "json", success: function(data){ $('div#test_ajax_response').html(data.d); } }); }); });
Comment