1、不換行:
word-break:keep-all;Word-wrap:normal
2、換行:
word-break:break-all;word-wrap:break-Word
以上的換行只支持英文,當標題中包含有中文時並不好用。
3、如果標題中含有中文的,只能在GridVIEw的RowDataBound事件中添加代碼,如下:
if (e.Row.RowType == DataControlRowType.Header)
{
e.Row.Cells[0].Text = "<nobr>操作用戶</nobr>";
e.Row.Cells[1].Text = "<nobr>批次名稱</nobr>";
e.Row.Cells[2].Text = "<nobr>文件名稱</nobr>";
e.Row.Cells[3].Text = "<nobr>檔案類型</nobr>";
e.Row.Cells[4].Text = "<nobr>字段名稱</nobr>";
e.Row.Cells[5].Text = "<nobr>字段值</nobr>";
e.Row.Cells[6].Text = "<nobr>字段長度</nobr>";
e.Row.Cells[7].Text = "<nobr>所在流程</nobr>";
e.Row.Cells[8].Text =">"<nobr>開始時間</nobr>";
e.Row.Cells[9].Text = "<nobr>結束時間</nobr>";
e.Row.Cells[10].Text = "<nobr>錄入版本</nobr>";
}