GridLines 枚举表示在表结构中显示项的控件的各种网格线样式。可以显示水平网格线、垂直网格线、同时显示水平和垂直网格线或不显示任何网格线。
Both
同时呈现水平和垂直网格线。
Horizontal
仅呈现水平网格线。
None
不呈现网格线。
Vertical
仅呈现垂直网格线。
例如:
<asp:gridview id="CustomersGridView" datasourceid="CustomersSqlDataSource" autogeneratecolumns="true" gridlines="None" runat="server"> </asp:gridview>
其中:autogeneratecolumns表示获取或设置一个值,该值指示是否为数据源中的每一字段自动创建 BoundColumn 对象并在 DataGrid 控件中显示这些对象。自动生成的列不会添加到 Columns 集合中。也可以利用[column]标签显式的声明列
关于排序:
在布局页中允许排序:AllowSorting="true"
在代码页中允许排序:ItemsGrid.AllowSorting=true;
要排序的字段:SortField="Name";
设置好要排序的列后重新捆定
在布局页中指定排序时触发的事件:OnSortCommand="SortGrid"
在代码页中指定排序时触发的事件:ItemsGrid.SortCommand += new DataGridSortCommandEventHandler(this.SortGrid);
※※※※※※※※※※※※※※--我的程序人生--※※※※※※※※※※※※※※