Dropdown in update panel
Hi,
I have a dropdown in an update panel.
The problem is:
whenever I change the selected index to another it goes back to the old one.
The following is the update panel I'm using:
<asp:UpdatePanelID="UpdatePanel2"runat="server"UpdateMode="Always"ChildrenAsTriggers="true">
The following is the dopdown:
asp:DropDownListID="ddlTY1"runat="Server"OnSelectedIndexChanged="ddlTY1_SelectedIndexChanged"AutoPostBack="true"></asp:DropDownList>
Please suggest.
|