本文介绍了数据网格颜色变化取决于内部值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我提交了一个单选按钮列表
备注选择选项[确定]或[注释]

但是当单选按钮选择值时,我想要bgcolor [notok] ...

当用[notok]保存记录时,然后在网格视图中以该行显示数据backgroung color ="rad"


.please help me !!!!!!

i have one radiobuttonlist filed
remarks select option [ok] or [notok]

but i want bgcolor when radiobuttonlist select values [notok]...

when record save with [notok] then display data in gridview with this row backgroung color ="rad"


.please help me!!!!!!

推荐答案

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        CheckBox cbx = (CheckBox)e.Row.FindControl("checkBoxID");
        if (cbx != null)
        {
            if (cbx.Checked)
            {
                e.Row.BackColor = System.Drawing.Color.Red;
            }
        }
    }



这是一个如何更改gridRow的bg颜色的示例.



this is an Example of how to change bg color of a gridRow.



这篇关于数据网格颜色变化取决于内部值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 18:30