How to retrieve data from datatable to textboxes
Hi All,
I have DataTable. I need to display that data into textboxes..
DataTable contains the following values..
EmpID EmpName Dept Salary City
1 siva Technolo 1000 Hyderabad
i need to display these row values into my textboxes of the follows..
txtID.text=EmpID
txtName=EmpName
txtDept=Dept
txtSalary=Salary
txtCity=City
how can do this