Hi,
I Have created a custom document type with two fields, Desc and PDF. Then I have used repeater to display the content as follows.
<tr>
<td>Desc:</td>
<td><%# Eval("Desc") %></td>
</tr>
<tr>
<td>PDF:</td>
<td><a class="header bold" href="<%# GetDocumentUrl() %>"><%# Eval("PDF", true) %></a></td>
</tr>
</table>
What I m trying to do is uploading a pdf document and display a link to the pdf for the public. then they can download the pdf.
can someone please help me .