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
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
Comment