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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top