我在 c# 中使用 asp.net,我有一个数据字段 FID,它是一个主键,如果我的 FID 为“m001”,下次如果我输入与“m001”相同的值,它应该给出一个验证问题,我需要代码,但到目前为止我还没有提交验证摘要。
我的 asp.net 代码是
<asp:ValidationSummary ID="ValidationSummary1" runat="server"
ShowMessageBox="True" DisplayMode="BulletList"
HeaderText="Validation issues" ShowSummary="False" ValidationGroup="Validation"/>
<h3> Create New User </h3>
<table>
<tr>
<td>
<asp:Label ID="Label5" runat="server" Text="Faculty ID"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtfid" runat="server" Height="20px" Width="128px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Username"></asp:Label></td>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ErrorMessage="Please enter the username" ControlToValidate="txtuser1" Display="None" ValidationGroup="Validation" SetFocusOnError="true"></asp:RequiredFieldValidator>
<td>
<asp:TextBox ID="txtuser1" runat="server" Height="20px" Width="128px" />
</td>
</tr>
<tr>
<td>
我需要一个验证码,这样如果我重复相同的 FID,它应该在弹出窗口中给出错误消息