How To Set ActiveTab index using Javascript How To add Vertical Scroll in GridView and maintain Div’s Scroll Position
Oct 06

You don’t see any “width” property in the columns collection,you can set the width of GridView column in code behind.

protected void Page_Load(object sender, EventArgs e)
{

GridView1.Columns[0].ItemStyle.Width = 500;
}

Leave a Reply