The "cheapest" way to do this would be to press and hold the Shift key when you press the Search button.
Yes. But 'press Shift' is not answer for my question. Unfortunately.The right answer is here.1. FindC:\Inetpub\SolarWinds\Orion\NetPerfMon\Resources\Misc\SearchNodes.ascx2. Find this code.<asp:ImageButton runat="server" ID="btnSearch" ImageUrl="/Orion/images/Button.Search.gif"OnClick="SearchClick" />3. Add a little codeonClientClick = "document.forms[0].target='_blank';"Before<asp:ImageButton runat="server" ID="btnSearch" ImageUrl="/Orion/images/Button.Search.gif"OnClick="SearchClick" />After<asp:ImageButton runat="server" ID="btnSearch" ImageUrl="/Orion/images/Button.Search.gif"OnClick="SearchClick" onClientClick = "document.forms[0].target='_blank';"/>
Sure is... Althought you can do this customization I wouldn't recommend it and here is why: your going to have to re-do that customization every time a new Orion release comes out...
Sorry I only answered one of your three questions.
your going to have to re-do that customization every time a new Orion release comes out...