Hi,
I am trying to create some simple page navigation using a repeater:
<asp:Repeater ID="Navigation" runat="server">
<ItemTemplate>
<a href="<%# DataBinder.Eval(Container, "DataItem.DocumentUrlPath")%>">
<%# DataBinder.Eval(Container, "DataItem.DocumentName")%></a>
</ItemTemplate>
</asp:Repeater>
This is working fine but what property do i use if i want a link to that document ? (currently using DocumentUrlPath but this is not corect)
Thanks
Luke