T
Tony Johansson
Hello!
I have this statement in VB.net and I want to have it in C#. I have done
someting but don't know
how I rewrite this CType in C#
Dim strId As String = CType(GridView1.Rows(e.RowIndex).Cells(2).Controls(0),
TextBox).Text
string strID = ???
GridView1.Rows[e.RowIndex].Cells[2].Controls[0],???
//Tony
I have this statement in VB.net and I want to have it in C#. I have done
someting but don't know
how I rewrite this CType in C#
Dim strId As String = CType(GridView1.Rows(e.RowIndex).Cells(2).Controls(0),
TextBox).Text
string strID = ???
GridView1.Rows[e.RowIndex].Cells[2].Controls[0],???
//Tony