Hi Guys,
This worke fine except I get "Front" & "Back" row as last row. Is there anyway to supress it?
Thank you
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="AccessDataSource1" >
<HeaderTemplate>
<table border=<%=iBorder %> width=60%>
<tr>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Front</B></span></td>
<td style="color: #ffffff"></td>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Back</B></span></td>
<td style="color: #ffffff"></td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td height =175 width=150>
<asp:ImageField DataImageUrlField="Imagename" >
<ItemStyle Height="50px" Width="50px" />
<ControlStyle Height="50px" Width="50px" />
</asp:ImageField>
</td>
<td><span style="color: #ffffff"> <%#DataBinder.Eval(Container.DataItem, "Desc")%> </td>
<td height =175 width=150>
<asp:ImageField DataImageUrlField="Imagename2" >
<ItemStyle Height="50px" Width="50px" />
<ControlStyle Height="50px" Width="50px" />
</asp:ImageField>
</td>
<td ><span style="color:#ffffff; font-family: Arial, Sans-Serif; font-size:small"> <%# DataBinder.Eval(Container.DataItem, "Comments") %> </td>
</tr>
<tr>
<td colspan=4 align=right><span style="color: #ffffff; font-size: smaller; font-family:Georgia, Serif, Times New Roman"><b>Product# <%# DataBinder.Eval(Container.DataItem, "sCode") %> </b></td>
</tr>
<tr>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Front</B></span></td>
<td style="color: #ffffff"></td>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Back</B></span></td>
<td style="color: #ffffff"></td>
</tr>
</ItemTemplate>
</asp:Repeater>
This worke fine except I get "Front" & "Back" row as last row. Is there anyway to supress it?
Thank you
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="AccessDataSource1" >
<HeaderTemplate>
<table border=<%=iBorder %> width=60%>
<tr>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Front</B></span></td>
<td style="color: #ffffff"></td>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Back</B></span></td>
<td style="color: #ffffff"></td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td height =175 width=150>
<asp:ImageField DataImageUrlField="Imagename" >
<ItemStyle Height="50px" Width="50px" />
<ControlStyle Height="50px" Width="50px" />
</asp:ImageField>
</td>
<td><span style="color: #ffffff"> <%#DataBinder.Eval(Container.DataItem, "Desc")%> </td>
<td height =175 width=150>
<asp:ImageField DataImageUrlField="Imagename2" >
<ItemStyle Height="50px" Width="50px" />
<ControlStyle Height="50px" Width="50px" />
</asp:ImageField>
</td>
<td ><span style="color:#ffffff; font-family: Arial, Sans-Serif; font-size:small"> <%# DataBinder.Eval(Container.DataItem, "Comments") %> </td>
</tr>
<tr>
<td colspan=4 align=right><span style="color: #ffffff; font-size: smaller; font-family:Georgia, Serif, Times New Roman"><b>Product# <%# DataBinder.Eval(Container.DataItem, "sCode") %> </b></td>
</tr>
<tr>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Front</B></span></td>
<td style="color: #ffffff"></td>
<td style="color: #ffffff" align =center><span style="font-size:xx-small; font-family:Small Fonts"><B>Back</B></span></td>
<td style="color: #ffffff"></td>
</tr>
</ItemTemplate>
</asp:Repeater>