关于显示数据时内容过多的问题和动态的tooltip实现    

用gridview显示数据时,有些数据的内容过多,使页面效果非常不美观。因此想办法对显示的数据做了截取,并且加上了tooltip功能,但是asp.NET的tooltip属性是预先写好的,我非常不满意,所以就想办法做了一个动态读取的tooltip功能。

 将代码贴出来,希望能给大家点帮助。

//数据绑定后执行该事件。  

protected void GridView1_DataBound(object sender, EventArgs e)
    {

 //通过循环来判断每一行的数据的字符数,如果过长就截取。
        for (int i = 0; i < GridView1.Rows.Count; i++)
        {
            string tmpcontent = GridView1.Rows[i].Cells[3].Text;
            if (tmpcontent.Length > 10)
            {
                GridView1.Rows[i].Cells[3].Text = tmpcontent.Substring(0, 9) + "…";

   //给GridView添加属性,并将该行该列的数据赋给ToolTip属性。
                GridView1.Rows[i].Cells[3].Attributes.Add("onfocus", GridView1.Rows[i].Cells[3].ToolTip = tmpcontent); 
            }
        }
    }


关联文档