Autopostback仅在ASP.NET中首次用于radiobutton列表

时间:2014-06-25 07:11:14

标签: c# asp.net postback radiobuttonlist

我正在使用单选按钮列表,但当此页面使用来自另一页面的查询字符串进行重定向时,回发仅适用于第一次。

这是我的代码

<asp:RadioButtonList runat="server" ID="rbtnlstEntype" 
                    onselectedindexchanged="rbtnlstEntype_SelectedIndexChanged" 
                    AutoPostBack="True" CssClass="textstyle" Font-Size="Medium" 
                    CellSpacing="1" CellPadding="1" Width="350px">
                <asp:ListItem>&nbsp;&nbsp;General Enquiry</asp:ListItem>
                <asp:ListItem>&nbsp;&nbsp;Product Enquiry</asp:ListItem>            
</asp:RadioButtonList>

`

protected void rbtnlstEntype_SelectedIndexChanged(object sender, EventArgs e)
{
      if (rbtnlstEntype.SelectedIndex == 0)
      {
          pnlselectcategory.Visible = false;
      }
      else
      {
          pnlselectcategory.Visible = true;
      }
}

0 个答案:

没有答案