D
Dave Hewes
I am new to 2.0 and converting a page over from 1.1 datagrid.
How do I do the same thing as the following in a Gridview?
Private Sub DataGrid1_ItemCommand(ByVal source As Object, ByVal e As
System.Web.UI.WebControls.DataGridCommandEventArgs) Handles
DataGrid1.ItemCommand
If e.CommandName = "Select" Then
Server.Transfer("frmProjectView.aspx?ProID=" +
e.Item.Cells(1).Text)
End If
End Sub
Dave
How do I do the same thing as the following in a Gridview?
Private Sub DataGrid1_ItemCommand(ByVal source As Object, ByVal e As
System.Web.UI.WebControls.DataGridCommandEventArgs) Handles
DataGrid1.ItemCommand
If e.CommandName = "Select" Then
Server.Transfer("frmProjectView.aspx?ProID=" +
e.Item.Cells(1).Text)
End If
End Sub
Dave