DataPagerFieldCollection.Add(DataPagerField) Método

Definição

Acrescenta o objeto DataPagerField especificado à coleção.

public void Add (System.Web.UI.WebControls.DataPagerField field);

Parâmetros

field
DataPagerField

O objeto a ser acrescentado à coleção.

Exemplos

O exemplo a seguir mostra como usar o Add método para adicionar um NextPreviousPagerField objeto a um DataPager controle .

void Page_Load(Object sender, EventArgs e)
{
  
  // Dynamically generated field pagers need to be created only 
  // the first time the page is loaded.
  
  if (!IsPostBack)
  {
    // Create a NextPreviousPagerField object to display
    // the buttons to navigate.
    NextPreviousPagerField pagerField = new NextPreviousPagerField();
    pagerField.ShowFirstPageButton = true;
    pagerField.ShowLastPageButton = true;
    pagerField.ButtonType = ButtonType.Button;

    // Add the pager field to the Fields collection of the
    // DataPager control.
    ContactsDataPager.Fields.Add(pagerField);
  }

  ContactsListView.DataBind();

}

Comentários

O DataPagerField objeto é adicionado ao final da coleção.

Aplica-se a

Produto Versões
.NET Framework 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

Confira também