Guest User

Untitled

a guest
Oct 15th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 1.24 KB | None | 0 0
  1. <asp:ListView runat="server" ID="lvBooks">
  2.                 <ItemTemplate>
  3.                     <hr class="horizontalRule" />
  4.                     <asp:Table runat="server" CssClass="bookViewTable">
  5.                         <asp:TableRow>
  6.  
  7.                             <asp:TableCell Width="70" HorizontalAlign="Center">
  8.                                 <a href=""><asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("UserCoverImageURL") %>'
  9.                                     Height="100" /></a>
  10.                             </asp:TableCell>
  11.  
  12.                             <asp:TableCell HorizontalAlign="Center" VerticalAlign="Top">
  13.                                 <a class="bookLink" href=""><asp:Label ID="Label1" runat="server" Text='<%# Eval("Title") %>' /></a>                                        
  14.                                 <asp:Label runat="server" Text=" by " />
  15.                                 <a class="bookLink" href=""><asp:Label ID="Label2" runat="server" Text='<%# Eval("FirstName") + " " + Eval("LastName")  %>' /></a>                          
  16.                             </asp:TableCell>
  17.  
  18.                         </asp:TableRow>
  19.                     </asp:Table>
  20.                 </ItemTemplate>
  21.             </asp:ListView>
Add Comment
Please, Sign In to add comment