RadioButtonList做选择,并判断对错

来源:百度知道 编辑:UC知道 时间:2024/05/31 22:59:39
RadioButtonList有四个项。A,B,C,D。当选择其中一个,点击提交按钮Button,相应的Label相应,提示错误还是正确。
希望给出详细代码。拜托了。。

<form id="aspnetform" runat="server">
<div>
<asp:RadioButtonList ID="rbList" runat="server">
<asp:ListItem>A</asp:ListItem>
<asp:ListItem>B</asp:ListItem>
<asp:ListItem>C</asp:ListItem>
<asp:ListItem>D</asp:ListItem>
</asp:RadioButtonList>
<asp:Label ID="lblMessage" runat="server" ForeColor="#FF3300"></asp:Label>
<br />
<br />
<asp:Button ID="btnSubmit" runat="server" onclick="btnSubmit_Click" Text="提交" />
</div>
</form>

protected void btnSubmit_Click ( object sender, EventArgs e )
{
if ( this.rbList.SelectedIndex == -1 )
{