由于asp .net中的runat服务器验证密码的问题

时间:2014-12-03 07:19:14

标签: c# html asp.net validation

我对表单进行了验证,每个字段都使用runat服务器。每个字段都验证完全正常,但在密码字段中,我得到的错误是"密码不匹配"。当我从同一个字段中删除runat服务器时它工作正常。请帮我解决这个问题。

我的代码是:

<asp:TextBox  runat="server"  class="validate[required] text-input" type="password" name="password" id="password"></asp:TextBox>  
 <asp:TextBox  runat="server"  class="validate[required,equals[password]] text-input"  type="password" name="password2" id="password2">  </asp:TextBox>

0 个答案:

没有答案