I have a quick question. In my code now I have setup to go to another page when a row is clicked in my gridview which has worked fine. Now I want to change this where I stay on the same page and hide one panel and show another. But I need the value of a cell saved from the click like I already do. I would really like to just do a postback knowing what row/cell data I clicked on and changing visible panels. I don't want the data in the grid to have to rebind incase it is a big one. Can someone show me the code of how to do this?

Thanks!!!

Code:
    Private Sub C1GridView1_RowDataBound(ByVal sender As Object, ByVal e As C1.Web.UI.Controls.C1GridView.C1GridViewRowEventArgs) Handles C1GridView1.RowDataBound
        If e.Row.RowType = C1.Web.UI.Controls.C1GridView.C1GridViewRowType.DataRow Then
            For intI As Integer = 0 To e.Row.Cells.Count - 1
                Dim a As String = e.Row.Cells(0).Text.ToString
                e.Row.Cells(intI).Attributes.Add("onclick", "parent.location='Test.aspx?vid=" & a & "'")
            Next
        End If