IButtonControl 接口

定义

定义必须实现的属性和事件以允许控件在网页上的作用就像按钮一样。

public interface class IButtonControl
public interface IButtonControl
type IButtonControl = interface
Public Interface IButtonControl
派生

注解

接口 IButtonControl 定义必须实现的属性和事件,以允许控件像网页上的按钮一样运行。

此接口的成员提供基本的按钮功能,例如引发 Click 事件和 Command 事件的功能。 属性 PostBackUrl 提供跨页发布功能。

实施者说明

在充当网页上的按钮控件的类中实现此接口。

属性

CausesValidation

获取或设置指示单击按钮是否会导致发生页验证的值。

CommandArgument

获取或设置传播到 Command 事件的可选参数。

CommandName

获取或设置传播到 Command 事件的命令名称。

PostBackUrl

获取或设置单击按钮控件时从当前页发送到的网页的 URL。

Text

获取或设置为该按钮显示的文本标题。

ValidationGroup

获取或设置按钮控件回发到服务器时所导致验证的控件组的名称。

事件

Click

在单击按钮控件时发生。

Command

在单击按钮控件时发生。

适用于