案例:ASP.NET案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<script  runat="server">
3
Sub submit(sender As Object, e As EventArgs)
4
   label1.Text="您选择了 " & radiolist1.SelectedItem.Text
5
End Sub
6
</script>
7
8
<html>
9
<body>
10
11
<form runat="server">
12
<asp:RadioButtonList id="radiolist1" runat="server">
13
   <asp:ListItem selected="true">Item 1</asp:ListItem>
14
   <asp:ListItem>Item 2</asp:ListItem>
15
   <asp:ListItem>Item 3</asp:ListItem>
16
   <asp:ListItem>Item 4</asp:ListItem>
17
</asp:RadioButtonList>
18
<br />
19
<asp:Button text="提交" OnClick="submit" runat="server"/>
20
<p><asp:Label id="Label1" runat="server"/></p>
21
</form>
22
23
</body>
24
</html>
25