Posted on: 8/2/2014 4:32:54 AM | Views : 379

Below is the code where UserID is of type uniqueidentifier.
<div class="accountInfo"> <fieldset class="register"> <legend>Information</legend> <p> <asp:ListView ID="ListView1" runat="server" DataSourceID="DataSource1"> <ItemTemplate> <asp:Label ID="LabelFN" runat="server" CssClass="Label" Text='<%#Eval("FullName") %>' /><br /> <asp:Label ID="LabelDOB" runat="server" CssClass="Label" Text='<%#Eval("DOB") %>' /><br /> </ItemTemplate> </asp:ListView> <asp:HyperLink runat="server" ID="HyperlinkProfile" Text='<%# (Eval("UserID") != null? "Add ...

Go to the complete details ...