Guest User

Untitled

a guest
Jul 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.69 KB | None | 0 0
  1. <asp:ListView ID="lvStudentLinks" runat="server">
  2.                 <LayoutTemplate>
  3.                         <div id="StudentHeaderDiv" runat="server" class="dropdownlinkheader">Student Links</div>
  4.                         <ul style="list-style-type: circle;">
  5.                             <li><asp:Label runat="server" valign="top" id="itemPlaceholder" /></li>
  6.                         </ul>                  
  7.                 </LayoutTemplate>
  8.                 <ItemTemplate>
  9.                         <asp:HyperLink runat="server" ID="StudentLink" class="dropdownlinks" Text='<%#Eval("linkText") %>' NavigateUrl='<%#Eval("linkUrl") %>' />
  10.                 </ItemTemplate>
  11.             </asp:ListView>
Add Comment
Please, Sign In to add comment