6

这是我在 stackoverflow.com 上的第一个问题。

我正在做一个学校项目,我必须验证用户的输入。每次页面加载时,它都会给服务器错误消息。请查看代码,以及之后的错误消息。

<div>
<table>
<td>
<asp:RadioButton ID="RadioButton1" runat="server"></asp:RadioButton>
<asp:RequiredFieldValidator ID="validateCheck" runat="server"  ControlToValidate="RadioButton1"   ErrorMessage="Please Enter" Display="Dynamic"></asp:RequiredFieldValidator>             
</td>
</table>
</div>

Server Error in '/' Application.
Control 'RadioButton1' referenced by the ControlToValidate property of 'validateCheck' cannot be validated.
4

2 回答 2

7

RequiredFieldValidator 不验证 RadioButton。但是,您可以改用 RadioButtonList 控件(由RequiredFieldValidator 验证)。

于 2012-10-07T00:08:01.240 回答
3

asp:RadioButton 不支持验证,而不是 RadioButton 使用 RadioButtonList:'

    <form id="form1" runat="server">
<div>

    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
        ErrorMessage="RequiredFieldValidator" ControlToValidate="RadioButtonList1"></asp:RequiredFieldValidator>

</div>
<asp:ValidationSummary ID="ValidationSummary1" runat="server" />

<asp:RadioButtonList ID="RadioButtonList1" runat="server">
    <asp:ListItem>One</asp:ListItem>
    <asp:ListItem>Two</asp:ListItem>
</asp:RadioButtonList>

</form>
于 2012-10-07T00:11:33.523 回答