Asp.net, vb.net, C#.net Resources

Welcome to Asp.net, vb.net, C#.net Resources Sign in | Join | Help
in Search

How to change the row color of the Repeater based on some condition?

Last post 08-22-2006, 7:09 AM by Webdeveloper. 1 replies.
Sort Posts: Previous Next
  •  08-21-2006, 5:24 AM 324

    How to change the row color of the Repeater based on some condition?

    How to change the row color of the Repeater based on some condition?
  •  08-22-2006, 7:09 AM 704 in reply to 324

    Re: How to change the row color of the Repeater based on some condition?

    <asp:Repeater ID="Repeater1" Runat="server" EnableViewState="False">
    <HeaderTemplate>
         <table>
    </HeaderTemplate>
    <ItemTemplate>
         <tr <%# FormatColorRow(DataBinder.Eval(Container.DataItem,"UnitPrice").ToString()) %> >
         <td >
         <%# DataBinder.Eval(Container.DataItem,"UnitPrice").ToString() %>
         </td>
    </ItemTemplate>
    <FooterTemplate>
         </table>
    </FooterTemplate>
    </asp:Repeater>


    VB.NET


    Protected Function FormatColorRow(strUnitPrice As String) As String
    Dim unitprice As Double = Double.Parse(strUnitPrice)
    If unitprice <= 15 Then
         Return "style='backGround-color:red''
    Else
         Return "style='backGround-color:green''
    End If
    End Function 'FormatColorRow


    C#


    protected string FormatColorRow(string strUnitPrice)
    {
         double unitprice =double.Parse ( strUnitPrice);
         if ( unitprice <= 15)
         {
              return "style='backGround-color:red'';
         }
         else
         {
              return "style='backGround-color:green'';
         }
    }
View as RSS news feed in XML
Powered by Community Server, by Telligent Systems