Skip to main content

Firefox custom coding for checkjre.aspx

Information

The following information is provided for custom coding in checkjre.aspx for a Firefox browser.

Firefox redirect to PFX realm

if (useragent.toLowerCase().indexOf("firefox") >= 0)
{
window.location = "../secureauthX/secureauth.aspx";
}
If Request.UserAgent.ToLower.Contains("5.1 safari") Or Request.UserAgent.ToLower.Contains("firefox")Then
Response.Redirect("../secureauth2/secureauth.aspx?userid=" + Page.Session("SSL_USERID"))
End If