how can i transfer the data value and different fields of datagrid to label or textbox? please help me...
Printable View
how can i transfer the data value and different fields of datagrid to label or textbox? please help me...
One way would be to take it off of your DataTable.
VB Code:
Me.TextBox1.Text = dt.Rows.Item(0).Item(0).ToString.Trim 'First records first field value
wow.. your a dah men!!! thankz alot dude.. =)
:D Thanks. I wasnt 100% sure since its ASP.NET but since they are based upon the same framework its all apples to apples and oranges to oranges. ;)