将变量添加到 ASP.NET CustomValidator
我需要一个自定义验证器,它可以在调用客户端 JavaScript 验证时以某种方式合并自定义变量。 该验证器用于转发器中,转发器中的每个项目都需要使用自定义验证器,但针对其自己的变量进行验证。 这可能吗?我该怎么做?
例如,我需要它的 javascript 验证函数类似于
JavascriptValidation(sender, args, MYVARIABLE)
或者有什么方法可以将我的变量合并到“args”中? 我不确定那是什么。
I need to have a custom validator that can in some way incorporate a custom variable when calling the client-side javascript validation. This validator is used in a repeater, and every item in the repeater needs to use the custom validator, but validating against its own variable. Is this possible and how can I do it?
Example, I need its javascript validation function to be like
JavascriptValidation(sender, args, MYVARIABLE)
Or is there any way to incorporate my variable in the 'args'? I'm not sure what that is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经发布了一篇关于转发器中的客户端自定义验证的文章。 它可能对其他人有用。
I have posted one article for Client side custom validation in repeater. It might be useful for others.
您可能需要一个
expando
属性You might want an
expando
attribute变量到底从哪里来?
如果是,您能否在自定义验证器中获取 DOM 节点的值?
如果没有,最好禁用客户端验证并仅在服务器上进行验证。
Where exactly does the variable come from?
If it is, could you get the value of the DOM node in your custom validator?
If not, it might be best to disable client-side validation and just validate on the server.