vote up 3 vote down star

Best alternative solution for ASP.NET AJAX UpdatePanel for dynamically add and remove user controls without full postback

flag

25% accept rate

5 Answers

vote up 0 vote down

jQuery offers a bunch of handy AJAX calls. I'm not sure how well it would work with user controls but I'm sure you could manage something.

link|flag
vote up 0 vote down

You can use ASP.Net Client Callbacks (here's one walkthrough, there are lots out there) by implementing ICallbackEventHandler on your UserControls. This avoids the full page postback, as it runs a modified version of the page lifecycle, but it has the advantage of keeping the UserControls in your page.

However I would also recommend jQuery if you can accomplish what you need with it.

link|flag
vote up 0 vote down

Also, depending on exactly what you're trying to do, you may want to look at WebMethods for updating bits and pieces. I don't know about jQuery's support for it, I haven't used that. But you can use PageMethods, if you're doing simple stuff easily enough, without the need for jQuery.

http://www.codeasp.net/blogs/Vijjendra/microsoft-net/192/call-pagemethod-from-javascript-in-asp.net-ajax

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.