1 2 3 4 5 6 7
//Hi, the problem many people with asp.net have, is how to set the width-property in a GridView. //It´s easy: In the Load-method protected void GridView1_Load(object sender, EventArgs e) { GridView1.Width = new Unit("100%"); }