If I am on the following page: http://subsite.mysite.com/sites/department/class/SitePages/Home.aspx and want to have a link to http://subsite.mysite.com/sites/department/SitePages/Home.aspx i.e. I want to keep开发者_运维问答 /sitepages/home.aspx and move it one step up in the hierarchy and not hard code http://subsite.mysite.com/sites/department/ Is this possible?
Thanks in advance.
Try:
<a href="../../SitePages/Home.aspx">My Link</a>
or
<a href="/department/SitePages/Home.aspx">My Link</a>
精彩评论