2
I would like a certain line from my GridView turn red if the corresponding cell in the closed column is false.
My Asp.Net is like this:
div class="GridMain">
                    <asp:GridView ID="gvInformationPeriod" runat="server" Width="100%" CssClass="GridViewUser" AllowPaging="True" CellPadding="4" AutoGenerateColumns="False"
                        GridLines="None" ForeColor="#333333" OnPageIndexChanging="gvInformationPeriod_PageIndexChanging" onrowdatabound ="gvInformationPeriod_RowDataBound" PageSize="100">
                        <AlternatingRowStyle CssClass="GridAlternativeUser" BackColor="White" />
                        <Columns>
                            <asp:BoundField DataField="PeriodID" HeaderText="PeriodID" />
                            <asp:BoundField DataField="SchoolID" HeaderText="SchoolID" />
                            <asp:BoundField DataField="DateOpen" HeaderText="Aberto Em" />
                            <asp:BoundField DataField="UserName" HeaderText="Usuario" />
                            <asp:BoundField DataField="PCName" HeaderText="PC Name" />
                            <asp:BoundField DataField="Closed" HeaderText="Closed" />
                        </Columns>
                        <EditRowStyle BackColor="#2461BF" />
                        <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
                        <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
                        <PagerStyle BackColor="#62AFC1" CssClass="GridPagerUser" ForeColor="White" HorizontalAlign="Center" />
                        <RowStyle BackColor="#EFF3FB" />
                        <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
                        <SortedAscendingCellStyle BackColor="#F5F7FB" />
                        <SortedAscendingHeaderStyle BackColor="#6D95E1" />
                        <SortedDescendingCellStyle BackColor="#E9EBEF" />
                        <SortedDescendingHeaderStyle BackColor="#4870BE" />
                    </asp:GridView>
                </div>
My ASPX.CS carries the GridView thus:
 private void ListarGridInformationPeriod()
    {
        if (ddlSchool.SelectedValue != "")
        {
            gvInformationPeriod.Visible = true;
            gvInformationPeriod.DataSource = Period.ListOpenPeriod(int.Parse(ddlSchool.SelectedValue));
            gvInformationPeriod.DataBind();
        }
    }
protected void gvInformationPeriod_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        if (!string.IsNullOrEmpty(ddlSchool.SelectedValue))
        {
            gvInformationPeriod.PageIndex = e.NewPageIndex;
            gvInformationPeriod.DataSource = Period.ListOpenPeriod(int.Parse(ddlSchool.SelectedValue));
            gvInformationPeriod.DataBind();
        }
    }
I thought I’d put something conforming down using the RowDataBound but it didn’t work
protected void gvInformationPeriod_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {                
            if (e.Row.Equals("false"))
            {
                e.Row.BackColor = Color.Red;
            }
        }
    }
I tried to use the content of this post but did not understand well
https://stackoverflow.com/questions/5048762/change-gridview-row-color-based-on-condition-in-c-sharp
I want to 'paint red' the whole row that contains the value in the Closed column as false. Thanks.
– Paulo Romeiro
It sends bullet that will work perfectly.
– Dorathoto