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);
        }
    }

相关文章:

  • 2021-10-08
  • 2021-08-04
  • 2022-01-20
  • 2022-12-23
  • 2021-11-14
  • 2021-10-22
猜你喜欢
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
相关资源
相似解决方案