GridView1_RowDataBound解决限制字段显示长度用"..."显示ToolTip

时间:2022-09-17 15:53:50

ToolTip:

//
// 摘要:
// 获取或设置当鼠标指针悬停在 Web 服务器控件上时显示的文本。
//
// 返回结果:
// 当鼠标指针悬停在 Web 服务器控件上时显示的文本。默认值为 System.String.Empty。

protected void gvMain_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            string url = e.Row.Cells[5].Text.Trim();
                if (url.length>20)
                {
                    e.Row.Cells[5].ToolTip = url;
                    e.Row.Cells[5].Text = url.substring(0,20)+"...";
                }
         }
        
    }