asp.net - How to call server side function using jquery wth out page refresh? -
How to call server side function using jquery wth out page refresh?
Use AJAX:
$ ('Somepage.aspx', {foo: 'bar'}, function (data) {warning ('Page returned it:' + data);}); Then set somepage.aspx to execute the function and return data (if necessary).
For more information on jQuery AJAX, see:
Comments
Post a Comment