I am developing a ASP.NET Web site and am looking to add a hyperlink or something similar to a repeater that will retrieve the path directory from a database table to PDF documents, so that when the user clicks the hyperlink they will be able to download the PDF File. Is this possible using a repeater control, I have tried putting the following code in my .aspx page but i guess i need some code behind it in my cs page to work?
<asp:Hyperlink ID="Hyperlink1" runat="server" NavigateUrl='<% # Eval("columnname") %>'>Hyperlink</asp:Hyperlink>
Any help would be great