0

我有一个单选按钮列表,如下所示:

<asp:RadioButtonList ID="RBjobSector" runat="server" style="font-size: medium">
    <asp:ListItem>apple</asp:ListItem>
    <asp:ListItem>orange</asp:ListItem>
</asp:RadioButtonList>

如果用户在单击“开始”按钮后选择其中任何一个,我如何引导用户转到 apple.aspx 或 orange.aspx 页面?

4

1 回答 1

0

将以下代码放入 selectedIndex 更改事件

if (RBjobSector.SelectedIndex == 0)
   Reponse.Redirect("apple.aspx")


if (RBjobSector.SelectedIndex == 1)
   Reponse.Redirect("orange.aspx")
于 2012-12-09T14:54:01.557 回答