GridView截取超过一定宽度的字符

方法1:★css处理:

a
{
 width: 80px;
 overflow: hidden; /*注意不要写在最后了*/
 white-space: nowrap;
 -o-text-overflow: ellipsis;
 text-overflow: ellipsis;
}
a:hover
{
 text-decoration: none;
 color: #000;
}

<a href="#" style="display:block; ;text-decoration: none; color: #000;" title='<%#Eval("GlobalCode")%>'><%#Eval("GlobalCode")%></a>

方法2:★服务器端截取字符

在GridViewTicket_RowDataBound等事件中:

string hotelAddress = dtHotel.Rows[row.RowIndex]["hotel_address"].ToString().Trim();
if (hotelAddress.Length > 9)
{
       ((Label)row.FindControl("LabelHotelAddress")).Text = hotelAddress.Substring(0, 8) + "...";
       ((Label)row.FindControl("LabelHotelAddress")).ToolTip = hotelAddress;
 }
else
{
       ((Label)row.FindControl("LabelHotelAddress")).Text = hotelAddress;
        ((Label)row.FindControl("LabelHotelAddress")).ToolTip = hotelAddress;
}

posted @ 2010-03-09 09:03  peter cheng  阅读(439)  评论(0编辑  收藏  举报