I have a drop down list that is bounded to sql with autopost back = true , now when i select for the first time the event fires , but when i select another item nothing happens ....
below is my code
<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True"
OnDataBound="DropDownList2_DataBound" CausesValidation="True"
DataSourceID="SqlDataSource2" DataTextField="Description"
DataValueField="PID"
onselectedindexchanged="DropDownList2_SelectedIndexChanged"
>
</asp:DropDownList>
my code behind :
protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e)
{
LabelPackages.Text = DropDownList2.SelectedValue.ToString();
Label2.Text = DropDownList2.SelectedIte ...
Go to the complete details ...