customvalidator servervalidate参数说明
CustomValidator 的 ServerValidate 事件有 2 个参数:source 和 args。
他们每个人都指出了什么?请对它们进行任何描述。
谢谢
The ServerValidate event of CustomValidator has 2 parameters: source and args.
What each of them point out to? Any description of them please.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与所有“
EventHandler
”样式事件一样,source
将引用引发事件的对象(在本例中为CustomValidator
实例)和 < code>args 将引用与此特定事件关联的事件数据。对于
ServerValidate
event,args
参数的类型为ServerValidateEventArgs
。它有两个重要的属性:值
:返回您正在验证的输入控件的值(例如文本框中的文本。)IsValid
:如果验证是,则将此属性设置为true
成功则为false
如果未成功。Like all "
EventHandler
"-style events,source
will refer to the object that raised the event (in this case theCustomValidator
instance) andargs
will refer to event data associated to this specific event.For
ServerValidate
event, theargs
parameter is of typeServerValidateEventArgs
. It has two important properties:Value
: returns the value of the input control you're validating (e.g. text in the textbox.)IsValid
: you set this property totrue
if the validation is successful andfalse
if it's not.参数 source 是验证器控件的引用,args 表示事件特定数据。
Argument source is reference of validator control and args represent event specific data.