C
Carlos
Hi all,
I have the following issue:.
I've got datatable that I am intending to bind to a dropdownlist. While
debugging
I am certain that my DataTable contains 3 valid rows. However, after the
binding
statement ends, I have three row that read 'System.Data.DataRowView' instead
of the
actual data.
Can someone help? I used to do this in VB .Net no problems referencing the
items within
a row, but the same can not be done in C#.
Thanks in advance,
Carlos.
DataTable m_DataTable_GetSchools = CatalogAccess.GetSchools();
DDL_SugMainMon.DataSource = m_DataTable_GetSchools;
DDL_SugMainMon.DataBind();
I have the following issue:.
I've got datatable that I am intending to bind to a dropdownlist. While
debugging
I am certain that my DataTable contains 3 valid rows. However, after the
binding
statement ends, I have three row that read 'System.Data.DataRowView' instead
of the
actual data.
Can someone help? I used to do this in VB .Net no problems referencing the
items within
a row, but the same can not be done in C#.
Thanks in advance,
Carlos.
DataTable m_DataTable_GetSchools = CatalogAccess.GetSchools();
DDL_SugMainMon.DataSource = m_DataTable_GetSchools;
DDL_SugMainMon.DataBind();