When Binding a GridView to a DataTable, How can we Change the value displayed by a BoundField

link|improve this question

50% accept rate
Found it! must use RowDataBound event Handler and then check the RowType .... – odiseh Jun 30 '09 at 12:55
feedback

1 Answer

up vote 1 down vote accepted

One way is like so:

<asp:CheckBox ID="CheckBox1" runat="server" 
Checked='<%# (((String)DataBinder.Eval(Container.DataItem, "Status")) == "O")?true:false %>' />

and then you have control in the code behind like:

protected void gvFiles_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        if (DataBinder.Eval(e.Row.DataItem, "LastUser").ToString() == "x")
        {
            TextBox txtId = gvFiles.FindControl("txtId") as TextBox;
            txtId.Text = "NA";
        }
    }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.