G
Guest
Using:
DataGrid1_ItemCommand(ByVal source As Object, ByVal e As
System.Web.UI.WebControls.DataGridCommandEventArgs) Handles
DataGrid1.ItemCommand
is there a way to find a specific item in the datagrid. I'm using the
CommandEvent to do some stuff. When I try to use syntax like this:
e.Item(1).FindControl("txtQuestion"), TextBox).Text
or other variations is says that e.item can not be used to find a particular
row, etc.
If there are say 5 rows in the datagrid and I want control("txtQuestion") on
row 2, how do I get that?
Once I click the commandevent I have the row, and fields, I'm on. But I also
need other rows values????
Make sense?
Thanx.
DataGrid1_ItemCommand(ByVal source As Object, ByVal e As
System.Web.UI.WebControls.DataGridCommandEventArgs) Handles
DataGrid1.ItemCommand
is there a way to find a specific item in the datagrid. I'm using the
CommandEvent to do some stuff. When I try to use syntax like this:
e.Item(1).FindControl("txtQuestion"), TextBox).Text
or other variations is says that e.item can not be used to find a particular
row, etc.
If there are say 5 rows in the datagrid and I want control("txtQuestion") on
row 2, how do I get that?
Once I click the commandevent I have the row, and fields, I'm on. But I also
need other rows values????
Make sense?
Thanx.