I need to dynamically create the column names in a "Html.Grid". In this case "MyGetData.GetAnyData" returns a table that do not know the fields.

DataTable dataTable = MyGetData.GetAnyData();

IEnumerable<DataRow> dataGrid = dataTable.AsEnumerable();

var columns = new List<DataColumn>();
foreach (DataColumn column in dataTable.Columns)
{
    columns.Add(column);
}

As I can do to assign the columns of "columns" a "Html.Grid"

@Html.Grid(dataGrid).Columns( ... )
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.