.NET Repeater update with JQuery
I managed to update my repeater based on a dropdown change using the onItemChanged value in a DropDownList control.
Now I would like to use JQuery to do the same thing but without a complete page开发者_开发百科 refresh.
Can anyone point me in the rifht direction?
Thanks
You can use an updatePanel to refresh specific parts of a page.
http://msdn.microsoft.com/en-us/library/bb399001.aspx
You can then use a client side script to add a "loading" graphic to make it obvious that a part of the page is refreshing its content.
You can use jQuery.ajax to call page methods asynchronously. google jquery.ajax asp.net
or jquery.ajax asp.net repeater
and you'll get dozens of samples.
UPDATE: Also, check out this great tutorial from Rick Strahl about using ajax methods in jQuery.
精彩评论