GridView 固定行高
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
for (int i = 0; i < e.Row.Cells.Count; i++)
{
e.Row.Cells[i].Attributes.Add("style", "white-space: nowrap;");
e.Row.Height = Unit.Pixel(100);
}
}
如果本文的描述的方法或内容有问题,请给我留言。