How to reference a Content scriptlet ?
Posted: Wed May 18, 2011 4:23 pm
I am sure this is a dumb question but thought I would ask anyway.
I have added a content scriptlet to the website and now I wish to add a link to the navigation bar which opens it up. I have edited the standard navbar and made the link appear. What I can't figure out is what the address is ?
<td class="navigation" colspan="2">
<div class="content" style="float:left;">
<a href="~/Default.aspx" class="tab">Home</a>
<a href="~/Search.aspx" class="tab">Product Finder</a>
<a href="~/AdvancedSearch.aspx" class="tab">Advanced Search</a>
#if ($store.Currencies.Count > 1 )
<a href="~/Currencies.aspx" class="tab">Currencies</a>
#end
<a href="~/ContactUs.aspx" class="tab">Contact Us</a>
<a href="~/App_Data/Scriptlets/Custom/MyPage.htm" class="tab">Manxter 2+2 </a> ### The line I have added, tried a heap of variation but nothing seems to work ?
</div>
</td>
I searched the help files etc with no luck. It is not an issue to direct to an external website etc just can't figure out the href path for the scriptlet I have added.
I have added a content scriptlet to the website and now I wish to add a link to the navigation bar which opens it up. I have edited the standard navbar and made the link appear. What I can't figure out is what the address is ?
<td class="navigation" colspan="2">
<div class="content" style="float:left;">
<a href="~/Default.aspx" class="tab">Home</a>
<a href="~/Search.aspx" class="tab">Product Finder</a>
<a href="~/AdvancedSearch.aspx" class="tab">Advanced Search</a>
#if ($store.Currencies.Count > 1 )
<a href="~/Currencies.aspx" class="tab">Currencies</a>
#end
<a href="~/ContactUs.aspx" class="tab">Contact Us</a>
<a href="~/App_Data/Scriptlets/Custom/MyPage.htm" class="tab">Manxter 2+2 </a> ### The line I have added, tried a heap of variation but nothing seems to work ?
</div>
</td>
I searched the help files etc with no luck. It is not an issue to direct to an external website etc just can't figure out the href path for the scriptlet I have added.