Can anyone tell me how I would get the data from a row in a DataGrid after a page changes. I am currently trying the following:

protected void MissionariesGrid_PageIndexChanged(object sender, EventArgs e)
{
    string missionaryID = MissionariesGrid.Rows[0].Cells[0].Text;
    TestLabel.Text = missionaryID;
}

The problem is, I do not get the value for the first row in the new page. I am getting the value for the first row in the old page.

有帮助吗?

解决方案

Your logic for that should be in the RowCreated or RowDataBound event handler... The PageIndexChanged happens too soon I think.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top