ASP.NET CompareValidator 与子控件进行比较
我有一个自定义控件“FieldGroup”,其中包含 asp:TextBox 和一些其他功能。 asp:TextBox 通过公共属性“TextBox”公开。
在使用我的 FieldGroup 的页面上,我有一个密码条目,这意味着我有两个密码条目,并且我想使用 CompareValidator 来确认这些值是否相同。我可以使用 CustomValidator 来完成此操作,但我想使用 CompareValidator 的客户端脚本。
我尝试设置 ControlToValidate="fieldA.TextBox" 和 ControlToCompare="fieldB.TextBox" 但这不起作用。这样的事情有可能吗?
I have a custom control "FieldGroup" which contains an asp:TextBox and some other functionality. The asp:TextBox is exposed through a public property "TextBox".
On the page that uses my FieldGroup I am having a password entry which means I have two of them and I want to use a CompareValidator to confirm that the values are the same. I could do this with a CustomValidator but I would like to make use of the CompareValidator's client side script.
I tried setting the ControlToValidate="fieldA.TextBox" and the ControlToCompare="fieldB.TextBox" but that is not working. Is something like this even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
迟到总比不到好...
将 ValidationPropertyAttribute 应用于用户控件类。
Better late than never...
Apply the ValidationPropertyAttribute to the user control class.