' passwordCompare'的ControlToValidate属性不能是空白的

时间:2015-03-16 12:57:52

标签: asp.net repeater comparevalidator

在我的页面中,我使用了转发器,我使用它来动态生成两个文本框&我有一个比较验证器。

现在对于这个验证器,我想设置ControlTovalidate& ControlToCompare。 两者的ID将来自两个动态生成的文本框。

因此,在将这些文本框绑定到转发器时,我设置了验证器的两个属性但是错误来自“'passwordCompare'的ControlToValidate属性不能为空。”

<asp:repeater id="repeater" runat="server" onitemdatabound="BoundProperty">
  <itemtemplate>
     <asp:panel id="panelProperty" runat="server" cssclass="prop">
           <asp:textbox id="textboxOrg" runat="server" cssclass="edit" visible="false"/>
    </asp:panel>
  </itemtemplate>
</asp:repeater>
<asp:comparevalidator id="passwordCompare" runat="server" controltovalidate="" controltocompare="" errormessage="CompareValidator"></asp:comparevalidator>

0 个答案:

没有答案