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 に答える