Web DataGrid

  • Thread starter Thread starter Morx
  • Start date Start date
M

Morx

I have a search which returns one row, 1 result in a web datagrid.

One textbox is also on the page and now I need to fill that text box with
the first value from that datagrid (that value is a number).



Thanks
 
¤ I have a search which returns one row, 1 result in a web datagrid.
¤
¤ One textbox is also on the page and now I need to fill that text box with
¤ the first value from that datagrid (that value is a number).
¤

DataGrid1.Items(0).Cells(0).Text


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
¤ I have a search which returns one row, 1 result in a web datagrid.
¤
¤ One textbox is also on the page and now I need to fill that text box with
¤ the first value from that datagrid (that value is a number).
¤

DataGrid1.Items(0).Cells(0).Text

Thanks, this code works.

Thanks again.
 
Back
Top