Replace UpdatePanel with JQuery

Malik Daud Ahmad Khokhar picture Malik Daud Ahmad Khokhar · Jan 6, 2009 · Viewed 9.4k times · Source

I'm using UpdatePanel to asynchronously call a button click event in a page that calls a method in another class which writes out an XML file on the output. Is there a way to do this with JQuery instead of UpdatePanel?

Answer

nshaw picture nshaw · Jan 6, 2009

Use jQuery to handle the click event. Then call a page method in the code-behind using this technique. From there you can write the XML file or do whatever else you want.