EditCommandColumn.CausesValidation 属性

定义

获取或设置一个值,该值指示在单击 EditCommandColumn 对象中的 Update 按钮时是否执行验证。

public:
 virtual property bool CausesValidation { bool get(); void set(bool value); };
public virtual bool CausesValidation { get; set; }
member this.CausesValidation : bool with get, set
Public Overridable Property CausesValidation As Boolean

属性值

Boolean

如果在单击 EditCommandColumn 中的 true 按钮时执行验证,则为 Update;否则为 false。 默认值为 true

注解

默认情况下,单击控件中的EditCommandColumn按钮时Update,将执行页面验证。 页面验证确定与页面上的验证控件关联的输入控件是否都通过验证控件指定的验证规则。

使用属性单击CausesValidation控件中的EditCommandColumn按钮时Update,可以指定或确定是否在客户端和服务器上执行验证。 若要防止执行验证,请将 CausesValidation 属性设置为 false

当属性的值CausesValidation设置为true时,还可以使用该ValidationGroup属性指定对象中的EditCommandColumn按钮导致验证的验证组Update的名称。

此属性的值存储在视图状态中。

适用于

另请参阅