When I click on the "Network Configuration Manager" link in the Modules section of NPM my window changes. I would rather is open a new tab or window.
The code looks like this is a server side request not a client side request. I think I have found the code for this operation:
if (url == string.Empty)
{
NoCredentialTable.Visible = true;
NoCredentialLink.HRef = locationUrl;
BeginError = CirrusConstants.BEGIN_MESSAGE;
CredentialError = CirrusConstants.NO_LOCATION;
}
else
{
Response.Redirect(url);
}
}
How can I change the "Response.Redirect(url)" to something that will open a new tab?