日期:2014-05-17 浏览次数:20521 次
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[6].Text == "0")
{
e.Row.Cells[6].Text = "未处理";
}
else if (e.Row.Cells[6].Text == "1")
{
e.Row.Cells[6].Text = "已处理";
e.Row.Cells[6].ForeColor = System.Drawing.Color.Red;
}
if (e.Row.Cells[7].Text == "False")
{
e.Row.Cells[7].Text = "未复核";
((Button)e.Row.Cells[7].FindControl("btn_check")).CommandName = "check";
((Button)e.Row.Cells[7].FindControl("btn_check")).Text = "复核";
}
else if (e.Row.Cells[7].Text == "True")