CssClass="GridViewStyle"
.GridViewStyle
{
font-family: Arial, Sans-Serif
font-size:small
table-layout: auto
border-collapse: collapse
border: #1d1d1d 1px solid
}
也可以在 gridView1_RowDataBound里面设置,例如:
protected void gridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string str = e.Row.Cells[2].Text
if (str.Length >10)
{
e.Row.Cells[2].Text = str.Substring(0, 10) + "..."
e.Row.Cells[2].ToolTip = str
}
}
}