Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
hello,
I would like to link on an external file ( like an PDF )
I have a layout that looks like this:
at the bottom I have this 3 boxes, I can only link them to pages inside umbraco, but I would like to link it to an pdf file.
the template code is
<%@ Master Language="C#" MasterPageFile="~/masterpages/BoilerplateMaster.master" AutoEventWireup="true" %><asp:Content ContentPlaceHolderId="BoilerplateHeaderContentPlaceHolder" runat="server"> <div id="producten" class="none"> <umbraco:Macro Alias="Productenmenu" runat="server"></umbraco:Macro> </div></asp:Content><asp:Content ContentPlaceHolderId="BoilerplateMainContentPlaceHolder" runat="server"> <div class="productmenu none"> <!--<umbraco:Macro Alias="ParentTitle" runat="server" />--> <umbraco:Macro Alias="ProductPageMenu" runat="server"></umbraco:Macro> </div> <div id="product" class="none"> <umbraco:Item field="pageTitle" insertTextBefore="<h2>" insertTextAfter="</h2>" runat="server" /> <umbraco:Item field="pageContent" runat="server" /> </div> <umbraco:Macro link="[#bannerLinks]" Alias="Banners" runat="server"></umbraco:Macro> <umbraco:Macro link="[#bannerMidden]" Alias="Banners" runat="server"></umbraco:Macro> <umbraco:Macro link="[#bannerRechts]" Alias="Banners" runat="server"></umbraco:Macro></asp:Content>
at the end the three macros are this boxes, can someone tell me how I can link them to an pdf file?
thank you
KR
kerstin
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
linking on external files
hello,
I would like to link on an external file ( like an PDF )
I have a layout that looks like this:
at the bottom I have this 3 boxes, I can only link them to pages inside umbraco, but I would like to link it to an pdf file.
the template code is
<%@ Master Language="C#" MasterPageFile="~/masterpages/BoilerplateMaster.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderId="BoilerplateHeaderContentPlaceHolder" runat="server">
<div id="producten" class="none">
<umbraco:Macro Alias="Productenmenu" runat="server"></umbraco:Macro>
</div>
</asp:Content>
<asp:Content ContentPlaceHolderId="BoilerplateMainContentPlaceHolder" runat="server">
<div class="productmenu none">
<!--<umbraco:Macro Alias="ParentTitle" runat="server" />-->
<umbraco:Macro Alias="ProductPageMenu" runat="server"></umbraco:Macro>
</div>
<div id="product" class="none">
<umbraco:Item field="pageTitle" insertTextBefore="<h2>" insertTextAfter="</h2>" runat="server" />
<umbraco:Item field="pageContent" runat="server" />
</div>
<umbraco:Macro link="[#bannerLinks]" Alias="Banners" runat="server"></umbraco:Macro>
<umbraco:Macro link="[#bannerMidden]" Alias="Banners" runat="server"></umbraco:Macro>
<umbraco:Macro link="[#bannerRechts]" Alias="Banners" runat="server"></umbraco:Macro>
</asp:Content>
at the end the three macros are this boxes, can someone tell me how I can link them to an pdf file?
thank you
KR
kerstin
is working on a reply...