I am binding a table to a gridview in asp.net as such
grdIssues.DataSource = mdtIssues; grdIssues.DataBind();
The problem is I cannot the
You dont have to manually create the columns to set them the width, you can do this
foreach (DataControlField column in OrdersGV.Columns) { column.ItemStyle.Width = Unit.Pixel(100); }