I recently saw a question on the forums where the user needed to pass the value of multiple textboxes while performing an async HTTP request using $.Ajax()
Here’s how to pass the values of multiple textboxes in the $.Ajax() call. The call is being made to an ASP.NET WebMethod which accepts 3 parameters.
$.ajax({
type: "POST",
url: "Customer.aspx/GetAddress",
data: { v1: $('#tb1').val(),
v2: $('#tb2').val(),
v3: $('#tb3').val()
},
success: function(msg) {
// do something with msg
}
});
Tweet
2 comments:
Try it, no work. Here is Original code:
data: "{accountnumber: '" + $(this).val() + "'}" --- work
If I change to:
data: {accountnumber : $(this).val()} --- no work
Please help
It will give 500 internal server until and unless you JSON.stringify({accountnumber : $(this).val()})
Post a Comment