<asp:RadioButtonList ID="rbl_IsRegular" runat="server" RepeatDirection="Horizontal" CssClass="rbl_list" AutoPostBack="true" OnSelectedIndexChanged="rbl_IsRegular_SelectedIndexChanged">
<asp:ListItem Value="0" Text="是"></asp:ListItem>
<asp:ListItem Value="1" Text="否" Selected="True"></asp:ListItem>
</asp:RadioButtonList>
后台代码
protected void rbl_IsRegular_SelectedIndexChanged (object sender, EventArgs e)
{
//具体事件内容
}
RadioButtonList中OnSelectedIndexChanged事件
最新推荐文章于 2021-12-26 00:41:35 发布