F
Francois
Hello,
ASP NET 2.0 visual studio 2005.
I am tryng to create a dynamic dropdownlist in the Page_Load event.
myDDL = new DropDownList
I populate it in the IsPostBack branch of Page_Load.
myDDL.DataSource = ArrayList ...
myDDL.DataBind();
When the page is called back after a click, the dropdownlist comes back
empty,
I have myDDL.SelectedValue = "" ;
I have no problem with other textBox.
Of course, EnableViewState = true.
What should I check for ?
Thanks.
François.
ASP NET 2.0 visual studio 2005.
I am tryng to create a dynamic dropdownlist in the Page_Load event.
myDDL = new DropDownList
I populate it in the IsPostBack branch of Page_Load.
myDDL.DataSource = ArrayList ...
myDDL.DataBind();
When the page is called back after a click, the dropdownlist comes back
empty,
I have myDDL.SelectedValue = "" ;
I have no problem with other textBox.
Of course, EnableViewState = true.
What should I check for ?
Thanks.
François.