B
bull2000
we have two dropdownlist controls in a program. both of them have the same
data items in the list.
these dropdownlists are populated in Page_Load and set selected value using
SelectedValue.
the odd thing is when one is changed the other one will be changed as well.
NewBranch.SelectedValue = (string)dr["NewBranch"];
OldBranch.SelectedValue = (string)dr["OldBranch"];
It seems somehow the wire gets crossed. I checked the declaration and other
code and can not find anything wrong.
Any idea what could be wrong, where to look.
Thanks a lot for your help
PS. we have a working version of code and do not seem any difference between
the working version and the debuggy one.
data items in the list.
these dropdownlists are populated in Page_Load and set selected value using
SelectedValue.
the odd thing is when one is changed the other one will be changed as well.
NewBranch.SelectedValue = (string)dr["NewBranch"];
OldBranch.SelectedValue = (string)dr["OldBranch"];
It seems somehow the wire gets crossed. I checked the declaration and other
code and can not find anything wrong.
Any idea what could be wrong, where to look.
Thanks a lot for your help
PS. we have a working version of code and do not seem any difference between
the working version and the debuggy one.