如何从Jquery调用Handler(.ashx)?

时间:2013-03-08 07:49:52

标签: c# jquery asp.net ashx

我有一个HTTP处理程序(.ashx),它从数据库生成一些html代码,我想从我的Jquery函数调用它并传递一个值(userID)。

我不知道如何调用它并检索其数据。

2 个答案:

答案 0 :(得分:7)

像这样的事情。

$(document).ready(function() {

    $.get("http://path/to/handler.ashx", function(html) {
        alert(html);
    });

});

答案 1 :(得分:4)