GridView Constructor

Definición

Inicializa una nueva instancia de la clase GridView.

C#
public GridView();

Ejemplos

En el ejemplo siguiente se muestra cómo usar el constructor para agregar dinámicamente un GridView control a una página.

ASP.NET (C#)

<%@ Page language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    void Page_Load(Object sender, EventArgs e)
    {
        
        // Create a new GridView object.
        GridView customersGridView = new GridView();
         
        // Set the GridView object's properties.
        customersGridView.ID = "CustomersGridView";
        customersGridView.DataSourceID = "CustomersSource";
        customersGridView.AutoGenerateColumns = true;
        
        // Add the GridView object to the Controls collection
        // of the PlaceHolder control.
        GridViewPlaceHolder.Controls.Add(customersGridView);
        
    }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>GridView Constructor Example</title>
</head>
<body>
    <form id="form1" runat="server">

      <h3>GridView Constructor Example</h3>

      <asp:placeholder id="GridViewPlaceHolder"
        runat="Server"/>

      <!-- 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="CustomersSource"
        selectcommand="Select [CustomerID], [CompanyName], [City] From [Customers]"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" 
        runat="server"/>

    </form>
  </body>
</html>

Comentarios

Use este constructor para inicializar una nueva instancia de la GridView clase . Para agregar dinámicamente un GridView control a una página, cree un nuevo GridView objeto, establezca sus propiedades y, a continuación, agréguelo a la Control.Controls colección de un control de contenedor, como PlaceHolder.

Se aplica a

Produto Versións
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Consulte también