vote up 1 vote down star

Should dynamic asp.net controls be avoided at all costs?

In what situations should they be used?

What do you use as their replacement?

flag

3 Answers

vote up 1 vote down

I mostly avoid them if a postback is required. Reconstructing them is a pain. When possible build them inside a <asp:repeater> or other control which can be databound.

link|flag
I agree. Nice answer. – neodymium May 6 at 21:46
vote up 1 vote down
  1. No
  2. When you don't know until runtime the control you want to instantiate
  3. I am not afraid of dynamic controls..

For rehydrating them on post back I use a DynamicControlsPlaceholder

It's great when you want to bring a control back with it's viewstate without having to reconstruct it yourself on each request.

link|flag
Very nice Chris. Thank you. – neodymium May 6 at 23:03
vote up 0 vote down

1) Unnecessary complexity always should be avoided.
2) When they are necessary.
3) Lesser complicated options.

link|flag
Could you expand on all three. Thanks. – neodymium May 6 at 21:45

Your Answer

Get an OpenID
or

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