GridView一般换行与强制换行

GridView里有一列绑定的数据很长,显示的时候在一行里面显示,页面拉得很宽。
原因是连续英文段为一个整体导致的,在RowDataBound中添加上了一句e.Row.Cells[2].Style.Add("word-break", "break-all")就可以。如果要给所有的列增加此属性:

  1.     protected void Page_Load(object sender, EventArgs e)
  2.     {
  3.         //正常换行
  4.         GridView1.Attributes.Add("style""word-break:keep-all;word-wrap:normal");
  5.         //下面这行是自动换行
  6.         GridView1.Attributes.Add("style""word-break:break-all;word-wrap:break-word");
  7.         if (!IsPostBack)
  8.         {
  9.             databind();
  10.         }
  11.     }

你可能感兴趣的:(GridView一般换行与强制换行)