我有一个radiobuttonlist:
<asp:RadioButtonList ID="rblSwitch1" runat="server"
onselectedindexchanged="rblSwitch1_SelectedIndexChanged"
style="margin-left: 0px" AutoPostBack="True">
<asp:ListItem Value="0">New Shipment</asp:ListItem>
<asp:ListItem Value="1">Existing Shipment</asp:ListItem>
</asp:RadioButtonList>
由于某种原因,偶尔会在每次点击5次后取消选择。我不是造成这种情况的原因,并且很难尝试复制这个我自己,我只知道对于使用我的软件的人来说这是一个问题。如果可以的话,我该如何改变,一旦被选中就改变它,它就会保持这种状态。
protected void rblSwitch1_SelectedIndexChanged(object sender, EventArgs e)
{
}
答案 0 :(得分:0)
检查'rblSwitch1_SelectedIndexChanged'方法以确保它不会重定向回到此页面,或以其他方式设置rblSwitch1的SelectedValue。