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.

alt text

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

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -