Hello
I have the following code:
<asp:Repeater ID="repReviews" runat="server">
<ItemTemplate>
<div>
<%#Eval("UserId") %>
<%#Eval("Date") %>
<%#Eval("Review") %>
</div>
</ItemTemplate>
</asp:Repeater>
Can anyone show me some code, on how I get <%#Eval("UserId") %> to be the username instead of UserId.
Thanks.
...
Go to the complete details ...