What I want to do is the following:
Somewhere inside my page, I want to have a direct link to a DNN tab (in the form of /default.aspx?tabid=xxx - I have friendly urls disabled). This is very easy to achieve with basic HTML coding, but when the Link URL property of the tab I'm pointing to is, for example, set to "A page on your site", then the link does not behave the same as it would behave when using the dnn nav menu or any other navigation system built for dnn.
Example:
I've got a page with tabid=100 which has its "link url" property set to "a page on your site", pointing to tabid 102.
If I use a direct url (in the form of /default.aspx?tabid=100) then I will be transferred to tabid 100
If I click this page through the dnn navigation menu, I'll (correctly) be transferred to tabid 102.
What I need is a way to be able to have direct links on my page, written by hand, which will still respect the "link url" property and navigate me to tabid 102, not 100.
Hope I'm clear enough, sorry if I got you confused :)