Should dynamic asp.net controls be avoided at all costs?
In what situations should they be used?
What do you use as their replacement?
|
|
|
|
|
|
|
I mostly avoid them if a postback is required. Reconstructing them is a pain. When possible build them inside a |
|||
|
|
|
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. |
|||
|
|
|
1) Unnecessary complexity always should be avoided. |
|||
|