AuthenticationError

Sets an authentication error to display.

Parameters

None

Examples
Copy
if (CRM.Authenticated)
    {
        // Perform action for authenticated users
    }

else
    {
        Response.Write('You are not a valid user' + CRM.AuthenticationError);
    }