selected index event is not working in dropdown
Posted
by prince23
on Stack Overflow
See other posts from Stack Overflow
or by prince23
Published on 2009-09-08T05:26:12Z
Indexed on
2010/05/13
17:04 UTC
Read the original article
Hit count: 157
<asp:DropDownList ID="ddlTime" runat="server" CausesValidation="true"
AutoPostBack="true"
onselectedindexchanged="ddlTime_SelectedIndexChanged">
<asp:ListItem Selected Value = "True">--Select--</asp:ListItem>
<asp:ListItem>8.50</asp:ListItem>
<asp:ListItem>9.00</asp:ListItem>
<asp:ListItem>9.50</asp:ListItem>
</asp:DropDownList>
I have drop down with the event changing . but when ever i select an value this event is not firing at all
protected void ddlTime_SelectedIndexChanged(object sender, EventArgs e)
{
}
What is the issue that is causing here any help would be great thank you
© Stack Overflow or respective owner