M
Matthew Louden
The following prints a table of datagrid:
Dim dt As DataTable = ds.Tables(0)
dgEmployeeInfo.DataSource = dt
dgEmployeeInfo.DataBind()
I want to add a hyperlink in each ID field, so that the user can click it
and see the detailed information of each employee.
I have no idea how to print it row by row in a data grid, please help!!
Dim dt As DataTable = ds.Tables(0)
dgEmployeeInfo.DataSource = dt
dgEmployeeInfo.DataBind()
I want to add a hyperlink in each ID field, so that the user can click it
and see the detailed information of each employee.
I have no idea how to print it row by row in a data grid, please help!!