码迷,mamicode.com
首页 > 其他好文 > 详细

GridView使用技巧

时间:2014-10-23 15:46:53      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   使用   sp   数据   div   on   

1、单元格超过部分省略号显示:

if (e.Row.RowType == DataControlRowType.DataRow)//数据行
{
    string Str = e.Row.Cells[1].Text; //第二列内容
    if (Str.Length > 45) //第二列内容大于20个
    {
        e.Row.Cells[1].Text = Str.Substring(0, 45) + "..."; //截取20个显示,其他用“...”号代替
        e.Row.Cells[1].ToolTip = Str;//鼠标放上去显示全部信息
    }
}

 

GridView使用技巧

标签:style   blog   color   ar   使用   sp   数据   div   on   

原文地址:http://www.cnblogs.com/kedarui/p/4045672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!