时间:2011-01-06 19:37:53

标签: asp.net jquery asp.net-4.0

1 个答案:

答案 0 :(得分:0)

页面方法仅在POST编辑时有效,如下所示:

$.ajax({
    url:'WebForm3.aspx/Populate',
    data: '{}',
    dataType:"json",
    type:"POST",
    contentType: 'application/json; charset=utf-8',
    success: function(msg) {
        alert("success");    },
    error: function(msg, text) {
        alert(text);
    } 
 });

不要忘记引用数据参数:data: '{}'