GridView.OnSorting(GridViewSortEventArgs) 方法

定义

引发 Sorting 事件。

protected:
 virtual void OnSorting(System::Web::UI::WebControls::GridViewSortEventArgs ^ e);
protected virtual void OnSorting (System.Web.UI.WebControls.GridViewSortEventArgs e);
abstract member OnSorting : System.Web.UI.WebControls.GridViewSortEventArgs -> unit
override this.OnSorting : System.Web.UI.WebControls.GridViewSortEventArgs -> unit
Protected Overridable Sub OnSorting (e As GridViewSortEventArgs)

参数

e
GridViewSortEventArgs

包含事件数据的 GridViewSortEventArgs

例外

没有 Sorting 事件的处理程序。

注解

Sorting 单击用于对列进行排序的超链接时,但在控件处理排序操作之前 GridView ,将引发 该事件。 这使你可以提供一个事件处理方法,该方法执行自定义例程,例如,每当发生此事件时取消排序操作。

引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件

OnSorting 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnSorting(GridViewSortEventArgs) 时,一定要调用基类的 OnSorting(GridViewSortEventArgs) 方法,以便已注册的委托对事件进行接收。

适用于

另请参阅