tags:

views:

137

answers:

1

Best method to add/remove webcontrols or user controls in asp.net for dynamic forms without postback

A: 

Try using ASP.NET Ajax, although technically this is a postback, yet it doesn't (really) feel like one for the end-user.

If that is also not allowed, you can just add html elements using javascript.

Gidon