protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e)
{
foreach(TableCell tc in e.Row.Cells)
{
tc.Attributes["style"]="border-color:red";
}
}
protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e)
{
foreach(TableCell tc in e.Row.Cells)
{
tc.Attributes["style"]="border-color:red";
}
}
转载于:https://www.cnblogs.com/hhwan/archive/2012/12/25/2833215.html