程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> GridView標題行換行之我見

GridView標題行換行之我見

編輯:.NET實例教程
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>";           
        }         
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved