点击下拉选择触发事件【c#】
时间:2021-09-06 23:48:31
收藏:0
阅读:30
<asp:DropDownList ID="ddlRegionList" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddlDeptList_SelectedIndexChanged">
<asp:ListItem>是</asp:ListItem>
<asp:ListItem>否</asp:ListItem>
</asp:DropDownList>
protected void ddlDeptList_SelectedIndexChanged(object sender, EventArgs e)
{
code.....
FillDG();
FillUI();
}
原文:https://www.cnblogs.com/liuguiqing/p/15233352.html
评论(0)