。net中如何让gridview中单元格中过长的内容用省略号表示???鼠标放上时可以全部显示?
2个回答
展开全部
应该用用gridview的RowDataBound事件
protected void gridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)//数据行
{
string Str = e.Row.Cells[1].Text; //第二列内容
if (Str.Length > 20) //第二列内容大于20个
{
e.Row.Cells[1].Text = Str.Substring(0, 20) + "..."; //截取20个显示,其他用“...”号代替
e.Row.Cells[1].ToolTip = Str;//鼠标放上去显示全部信息
}
}
}
protected void gridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)//数据行
{
string Str = e.Row.Cells[1].Text; //第二列内容
if (Str.Length > 20) //第二列内容大于20个
{
e.Row.Cells[1].Text = Str.Substring(0, 20) + "..."; //截取20个显示,其他用“...”号代替
e.Row.Cells[1].ToolTip = Str;//鼠标放上去显示全部信息
}
}
}
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询