Вы можете сделать это таким образом
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "webpage.aspx/methodName",
data: "{id: '" + id + "'}",
success: getTargetSuccess,
error: getTargetFailure
});
function getTargetSuccess(result,e)
{
var data = result.d;
}
function getTargetFailure(result,e)
{ }