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)+"...";
}
}
}