ASP.NET CompareValidator 与子控件进行比较

发布于 2024-09-08 02:36:41 字数 335 浏览 1 评论 0原文

我有一个自定义控件“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸠魁 2024-09-15 02:36:41

迟到总比不到好...

将 ValidationPropertyAttribute 应用于用户控件类。

Better late than never...

Apply the ValidationPropertyAttribute to the user control class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文