I have a List of Lists of string . I want to show it to user using a gridview . as number of columns are not known I decided to create gridview fields dynamically . I found some tutorials but all of them use DataTable . I tried to use the same but I have problem with databinding event's "_columnName" :
void field_DataBinding(object sender, EventArgs e)
{
TextBox txtdata = (TextBox)sender;
GridViewRow container = (GridViewRow)txtdata.NamingContainer;
object dataValue = DataBinder.Eval(container.DataItem, _columnName);
if (dataValue != DBNull.Value)
{
txtdata.Text = dataValue.ToString();
}
}
as there is no column in list . any suggestion is appreciated .