我的页面中有一个下拉列表,如下所示:
<asp:DropDownList ID="DropDownList1" runat="server"
onselectedindexchanged="DropDownList1_SelectedIndexChanged" AutoPostBack="true">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" Value="2"></asp:ListItem>
<asp:ListItem Text="3" Value="3"></asp:ListItem>
</asp:DropDownList>
代码背后:
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
//Logic Goes Here
}
在页面加载中,从会话变量中,我将 DropDownList id 设为“DropDownList1”。基于此 ID 字符串,我可以获得控件,但无法获得与其关联的事件名称。
那么如何通过知道Control来找到Control的事件名称呢??
提前感谢