Al final lo hice con un gridview así, al principio no me salía por que ponía una columan como tipo hiperlink cuando tenía que haber solo "habilitado la selección" en el mismo gridview y gracias a Dios funcionó n_n... Gracias por tu ayuda
cgonzalezm n_n... Aquí el código, pos si le sirve a alguien:
Envía:
Código ASP:
Ver originalProtected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.SelectedIndexChanged
Session("sobres") = GridView1.SelectedRow().Cells(1).Text.ToString
Response.Redirect("Recibe.aspx")
End Sub
Recibe:
Código ASP:
Ver originalProtected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim Answer As String
Answer = CType(Session("sobres"), String)
TextBox1.Text = Answer
End Sub