Hi.
I need to get data from the WebMethod and use it. The method returns the HTML string. But this code does not work.
$.ajax({
type: "POST",
url: "web.asmx/GetInfo",
dataType: "html",
success: function (msg) {
$('#mydiv').html(msg.d);
}
});
Go to the complete details ...