What I actually ended up doing was creating the hyperlink at the begining of each row on the GridView1_RowDataBound event.
Dim h1 As New HyperLink()
Dim DocPath As String
If e.Row.Cells(0).Text <> "document_uid" And e.Row.Cells(0).Text <> " " Then
DocPath = PopulateURL(e.Row.Cells(0).Text)
h1.Text = e.Row.Cells(1).Text
h1.NavigateUrl = DocPath
End If
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.