i have created a table with 2 fields in vb.net as follows -
Do While SqlDR.Read()
TR = New HtmlTableRow
TD = New HtmlTableCell
TD.InnerHtml = SqlDR("name")
TR.Cells.Add(TD)
TB.Rows.Add(TR)
Loop
SqlDR.Close()
Data looks like this -
Name Jimi Jonathan Paulie
How do i put a hyperlink on the name cell, so when i click on a specific name it will goto next page with that name?