<asp:RadioButtonList ID="RadioButtonList1" runat="server" Enabled="False"
RepeatDirection="Horizontal">
<asp:ListItem Value="0">丁等生</asp:ListItem>
<asp:ListItem Value="1">丙等生</asp:ListItem>
<asp:ListItem Value="2">乙等生</asp:ListItem>
<asp:ListItem Value="3">甲等生</asp:ListItem>
<asp:ListItem Value="4">優等生</asp:ListItem>
</asp:RadioButtonList>
Dim Score As Integer = Val(TextBox1.Text)
If Score < 60 Then
Label1.Text = "丁等生"
RadioButtonList1.SelectedIndex = 0
ElseIf Score < 70 Then
Label1.Text = "丙等生"
RadioButtonList1.SelectedIndex = 1
ElseIf Score < 80 Then
Label1.Text = "乙等生"
RadioButtonList1.SelectedIndex = 2
ElseIf Score < 90 Then
Label1.Text = "甲等生"
RadioButtonList1.SelectedIndex = 3
Else
Label1.Text = "優等生"
RadioButtonList1.SelectedIndex = 4
End If