why is the selectedvalue of this dropdownlist empty?

  • Thread starter Thread starter Bart
  • Start date Start date
B

Bart

Hi,

This code sends back the selectedvalue of a dropdownlist to itself
(postabck).
But the value (dd in the code) is empty.
I must say: it works with EnableViewState="true".

My question is: dropdownlist control doesn't need viewstate for keeping the
value when the ListItems are put declaratively. Why not when the ListItems
are put programmatically?

Thanks
Bart
 
if a select is declared declaratively, on postback the item values are
set in oninit by the code the form generates.

if you dynamically update the list, you need to also do it in oninit of
the postback.

if viewstate is enabled, the list is stored in viewstate, and the
control reloades the list in onviewstate load. also the render value is
saved, so the onchange event can be fired.

-- bruce (sqlwork.com)
 
If you put them in programmatically, in the page load, it reloads every time
the page posts back
You must surround the loading of the ddl with an postback block (if not
page.ispostback then...)
 
Back
Top