I have a sitemap configured by xml.
On one of the nodes i specify ClientSideCommand script to execute for navigation:
window.top.document.location.href='Reports.aspx?forward=24'
I do not specify NavigateUrl neither I want to.
But when i click on that node I get javascript error and then forward to correct url.
When i looked at the link being generated by the SiteMap I saw a postback call:
<code language="">javascript:if(window.top.document.location.href='Reports.aspx?forward=24'){__doPostBack(null,null);}
</code>
Last part __doPostBack() causing the javascript error.
Then I specify AutoPostBackOnSelect to False. No difference.
What is the purpose of AutoPostBackOnSelect on SiteMap item then?