Hello,
I have a document upload property called Agenda in a template for meetings. In the page, I will have a linkAgenda that will open the PDF selected by the editor with the Agenda property.
My code looks like this:
Page
Agenda
Code Behind
if (IsValue("Agenda"))
{
lnkAgenda.Visible = true;
lblSeparator3.Visible = true;
hlnkAgenda.NavigateUrl = Configuration.RootDir + ?????? + CurrentPage["Agenda"].ToString();
}
I am not sure how to extract the path to the specific document. Can you tell me what the episerver class would be?
PageAgenda
Code Behind
if (IsValue("Agenda"))
{
lnkAgenda.Visible = true;
lblSeparator3.Visible = true;
hlnkAgenda.NavigateUrl = Configuration.RootDir + ?????? + CurrentPage["Agenda"].ToString();
}
I am not sure how to extract the path to the specific document. Can you tell me what the episerver class would be?