I have 2 types of users (phonebookers and salesrep). They are supposed to have 2 different menu bars, pending on their login.
From the login.aspx - I set a number of Session[]s among them an ["EmployeeType"].
In my master page I have a ContentPlaceholder ID="Menu".
Master.page seems locked in place, long before I can change anything pending some Session value. I found the load sequence which seems to confirm my suspession as Masterpage is loaded and locked way before any contentpage get in play.
I tried <% If (Session["EmployeeType"].ToString() == "1") { %> type 1 employee <% } else {%>Type 2 employee<% } %> - without luck.
I tried doing it in Page_PreRender(EventArgs e) - no luck.
I tried having the hyperlink controls in the masterpage, without a text and then setting the text later i PreRender and visible = true/false - no luck.
Google says there is an option with javascript but I haven't found any examples or I haven't recognised any javascript as something I could use.
Google found a fair few people having the opposite problem of mine, their masterpage loads way too many times and they want to stop it doing that.