Selecting from gridview

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mirainc
    New Member
    • Jul 2008
    • 34

    Selecting from gridview

    Hey all

    I'm using a Gridview with Selection enabled to allow a user to select an item. When the user selects the item, I want to bring the user to another page where I will populate with the details of the selected item.

    How can i achieve this?

    This is what i did so far..
    Protected Sub CheckBox1_Check edChanged(ByVal sender As Object, ByVal e As System.EventArg s
    Dim CheckBox1 As CheckBox = CType(FindContr ol("CheckBox1") , CheckBox)
    If AddressGridView .SelectedValue = ("Adm_No") Then
    'what do i put here?
    End If
    Response.Redire ct("~\Reminder letter\Reminder Letter(ECC).asp x")
    End Sub

    Tks in advance
  • gopijmca
    New Member
    • Aug 2008
    • 4

    #2
    Hi,
    Use the concept of query string to pass the values from one page to another page.

    Comment

    Working...