When using the search function, even if there is only one result to the search, it displays the list (of 1) items that match the search.
Please, when the search only returns one item, go to it directly.
Chris
If you still need it, I just implemented this with the following code:
// AD. If there is only one result, go straight to it. else if (1 == nodes.Count) { Response.Redirect( "/Orion/NetPerfMon/NodeDetails.aspx?NetObject=" + nodes[0].NetObjectID.ToString() ); }
I insert this at line 40 of \Inetpub\SolarWinds\Orion\NetPerfMon\Resources\NodeSearchResults.aspx (above else)
HTH,Aaron
Aaron--
Thanks for the workaround.
I'll mark for the PM to review.
M