コード例 #1
0
 protected void GvRowCreated(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.Header)
     {
         if (String.Empty != _mStrSortExp)
         {
             GlobalUtilities.AddSortImage(e.Row, (GridView)sender, _mStrSortExp, _mSortDirection);
         }
     }
 }