I have an anchor tag which looks like this in the .htm file for my skin:
<a name="tphp" id="tphp">
This anchor is located near the top of the page. I have a hyperlink at the bottom of the page which should link to this, and it looks like this:
<a href="#tphp" title="Return to Top of Page">Top of Page</a>
After i parse the skin, it ends up looking like this and gives a "Directory Listing Denied" message when a user clicks it:
<a href="/DNN/portals/_default/skins/dnd/#tphp" title="Return to Top of Page">Top of Page</a>
I don't want to have to manually edit the ascx file each time i parse the skin. How do I get around this?