click on the row in the datagrid in vb.net1.1
-
IN VB.net window application after selecting the particular row I am getting the data from 1st column of that row.
Dim str As String = CType(dg1.Item(dg1.CurrentRowIndex, 0), String)
I WANT THE DO THE SAME THING IN WEB APPLICATION.I mean can you please tell me the name of function. PlEASE HELP ME. -
IN VB.net window application after selecting the particular row I am getting the data from 1st column of that row.
Dim str As String = CType(dg1.Item(dg1.CurrentRowIndex, 0), String)
I WANT THE DO THE SAME THING IN WEB APPLICATION.I mean can you please tell me the name of function. PlEASE HELP ME. -
datagrid.selecteditem.cell(0).text This is the Command and u will get result
-
datagrid.selecteditem.cell(0).text This is the Command and u will get result
I want to the result of the column of that particular row on which it is clicked.Can you help me?