C# equivalent of DataView.Item(1).Row(1)

  • Thread starter Thread starter Mark Jones
  • Start date Start date
M

Mark Jones

Hi, can someone please tell me what the C# version of the following VB.NET
coded is;

Dim oDV as DataView // DataView oDV = new DataView();
Response.Write(oDV.Item(1).Row(1))

Thanks in advance
Mark
 
This should wor

DataView oDV = new DataView()
Response.Write(oDv[1].Row[1].Valu

Keenan Newton
 
Back
Top