Hello,
I have the following table. Now, in the Image column i want to add an image for each row. How can i do it? Can anyone please help in this:
I have the following table. Now, in the Image column i want to add an image for each row. How can i do it? Can anyone please help in this:
Code:
<asp:table id="Table3" style="Z-INDEX: 102; LEFT: 50px; POSITION: absolute; TOP: 476px" runat="server" Height="28px" Width="689px" Font-Size="Medium" GridLines="Both" Font-Names="Calibri"> <asp:TableRow> <asp:TableCell BackColor="White" ForeColor="Black" Width="90px" Font-Names="Calibri" Font-Bold="True" HorizontalAlign="Center" BorderColor="White" Text="Item Id"></asp:TableCell> <asp:TableCell Width="120px" Font-Names="Calibri" Font-Bold="True" Text="Title"></asp:TableCell> <asp:TableCell Width="65px" Font-Names="Calibri" Font-Bold="True" HorizontalAlign="Center" Text="Author"></asp:TableCell> <asp:TableCell Width="80px" Font-Names="Calibri" Font-Bold="True" HorizontalAlign="Center" Text="Price"></asp:TableCell> <asp:TableCell Width="80px" Font-Names="Calibri" Font-Bold="True" HorizontalAlign="Center" Text="Image"></asp:TableCell> </asp:TableRow> </asp:table>
Comment