日期:2014-05-17 浏览次数:20612 次
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[0].Text == "0")
{
e.Row.Cells[0].Text = "空";
}
}
}