GridLines Enumeration
.NET Framework (current version)
Specifies the gridline styles for controls that display items in a table structure.
Assembly: System.Web (in System.Web.dll)
| Member name | Description | |
|---|---|---|
| Both | Both horizontal and vertical gridlines are rendered. | |
| Horizontal | Only horizontal gridlines are rendered. | |
| None | No gridlines are rendered. | |
| Vertical | Only vertical gridlines are rendered. |
The GridLines enumeration represents the different gridline styles for controls that display items in a table structure. You can display the horizontal, the vertical, both the horizontal and vertical, or no grid lines.
The following code example demonstrates how to use the GridLines enumeration to indicate that the gridlines in a GridView control should be hidden.
<%@ Page language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>GridView GridLines Example</title> </head> <body> <form id="form1" runat="server"> <h3>GridView GridLines Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSqlDataSource" autogeneratecolumns="true" gridlines="None" runat="server"> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSqlDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"> </asp:sqldatasource> </form> </body> </html>
.NET Framework
Available since 1.1
Available since 1.1
Show: