protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.Cells[5].text == "0")
        {
            e.Row.Cells[5].Text = "未回复";
        }
        else
        {
            e.Row.Cells[5].Text = "已回复";
        }
    }
运行时报错,指定的参数已超出有效值的范围。index,问题在哪?,请教各位高手。