Is there a way to remove the "LOG OUT" link located next to the user name from the Orion Web Console? We're auto logging in the user and displaying the site via an iframe, so this is not needed. Pleaes advise...
This output is included in the MasterPage.master file on line 161, which can be found in Inetpub\SolarWinds\Orion
Remember you are changing the code albeit only that for web display, so make a backup and ensure when you apply any updates and re-run the website aspect in the configuration wizard it will get defaulted. I would suggest you simply comment out the section with the link.
Please be aware this will affect all user accounts
I assume this is the line
<%=GetUsername().ToUpper()%> (<a href="">thwack.solarwinds.com/.../a>)
what about doing this so it only shows up for the admin user:
<%if (AllowAdmin()){ %>
<%} %>
Also this is what I did:
<%=GetUsername().ToUpper()%> <%--'(<a href="'--%>">thwack.solarwinds.com/.../a>)'--%>
The logout piece looks like it is commented but i still see the logout button showing up. Am I looking at the wrong page. do I have to start the web page every time i make a change?
I am coming over from a unix/apache background. asp and c# are new for me.
Thanks