Monday, August 16, 2010

Retreiving data from gridview in asp.net?

Is it possible to retreive data from gridview database into text boxes in asp.net and if it is then how??





thanksRetreiving data from gridview in asp.net?
Try this


TextBox1.Text = GridView1.Rows[0].Cells[0].Text


This assigns the value in 1st row 1st column of the gridview to the textbox.

No comments:

Post a Comment