web-dev-qa-db-fra.com

Comment parcourir en boucle chaque ligne, colonne et cellule d'un GridView et obtenir sa valeur

J'ai un GridView qui est databound, sur button_click je veux lire le GridView ligne par ligne chaque colonne et lire la valeur de chaque cellule d'une ligne et mettre à jour une table dans la base de données? Je sais aussi comment vérifier si cette cellule contient null.

J'essaie quelque chose comme ça et je suis resté coincé:

protected void SAVE_GRID_Click(object sender, EventArgs e)
{
    int rowscount = GridView2.Rows.Count;
    int columnscount = GridView2.Columns.Count;
    for (int i = 0; i < rowscount; i++)
    {
        for (int j = 1; j < columnscount; j++)
        {
            // I want to get data of each cell in a row
            // I want to read the corresponding header and store
        }
    }       
}
5
Archana B.R

Le plus simple serait d'utiliser un foreach:

foreach(GridViewRow row in GridView2.Rows)
{
    // here you'll get all rows with RowType=DataRow
    // others like Header are omitted in a foreach
}

Edit: Selon vos modifications, vous accédez de manière incorrecte à la colonne. Vous devez commencer par 0:

foreach(GridViewRow row in GridView2.Rows)
{
    for(int i = 0; i < GridView2.Columns.Count; i++)
    {
        String header = GridView2.Columns[i].HeaderText;
        String cellText = row.Cells[i].Text;
    }
}
18
Rango

Comme le dit "Tim Schmelter", c’est la meilleure solution: il suffit de changer dans son code la seconde boucle (GridView2.Columns [i] .Count by row.Cells.Count). 

foreach(GridViewRow row in GridView2.Rows)
{
    for(int i = 0; i < GridView2.Columns.Count; i++)
    {
        String header = GridView2.Columns[i].HeaderText;
        String cellText = row.Cells[i].Text;
    }
}

je vous remercie.

5
mkebri
foreach (DataGridViewRow row in GridView2.Rows)
            {
                if ( ! row.IsNewRow)
                {
                    for (int i = 0; i < GridView2.Columns.Count; i++)
                    {
                        String header = GridView2.Columns[i].HeaderText;
                        String cellText = Convert.ToString(row.Cells[i].Value);
                    }
                }
            }

Ici avant Itération pour la cellule Les valeurs doivent rechercher NewRow.

0
Satyavan Choure
foreach (DataGridViewRow row in dataGridView1.Rows)
        {
            for (int i = 0; i < dataGridView1.Columns.Count; i++)
            {
                String header = dataGridView1.Columns[i].HeaderText;
                //String cellText = row.Cells[i].Text;
                DataGridViewColumn column = dataGridView1.Columns[i]; // column[1] selects the required column 
                column.AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells; // sets the AutoSizeMode of column defined in previous line
                int colWidth = column.Width; // store columns width after auto resize           
                colWidth += 50; // add 30 pixels to what 'colWidth' already is
                this.dataGridView1.Columns[i].Width = colWidth; // set the columns width to the value stored in 'colWidth'
            }
        }
0
Irfan Noor