Posted on: 12/3/2014 8:05:59 PM | Views : 421

<asp:Panel ID="pnlRecipeComments" runat="server" CssClass="panels" GroupingText="RecipeCommemts" > <asp:Repeater ID="rptComments" runat="server" > <ItemTemplate> <div id= "comments"> <asp:Label ID="lblTime" runat="server" Text= '<%# "Posted on:" + Eval("postedTime") + "<br/> By " + Eval("name") %>' CssClass="commentsPostedTime"></asp:Label> <asp:Label ID="lblComment" runat="server" Text= '<%# Eval("comment") %>' ></asp:Label> </div> <asp:Button ID="btnEditComment" runat="server" Text="EditComment" /> </ItemTemplate> </asp:Repeater> ...

Go to the complete details ...