Hi, I want to know how can I read a datatable. I am using this code:
objDataAdapter.Fill(objDataSet, "Outlookbar")
lblArchives.Text = CStr(objDataSet.Tables("Outlookbar").Rows(1).ToString)

the second line doesn't return the value I want. Instead it returns System.Data.DataRow.
What should I change?