c# - Making AJAX call back in ASP.NET with jQuery -
i accept both c# , vb.net
if visit http://www.eol.org/pages/983558 , click on link image below you'll see in-line pop-up div displays busy status of ajax callback before displays information. so, information not there yet until click on link.
i'd same asp.net , jquery. if there's place me started on right track? thanks.
using jquery directly call asp.net ajax page methods
$.ajax({ type: "post", url: "pagename.aspx/methodname", data: "{}", contenttype: "application/json; charset=utf-8", datatype: "json", success: function(msg) { // interesting here. } });
i think place start.
Comments
Post a Comment