AuthenticationError
Sets an authentication error to display.
Parameters
None
Examples
if (CRM.Authenticated)
{
// Perform action for authenticated users
}
else
{
Response.Write('You are not a valid user' + CRM.AuthenticationError);
}
Page updated: 06 April 2023
Sets an authentication error to display.
None
if (CRM.Authenticated)
{
// Perform action for authenticated users
}
else
{
Response.Write('You are not a valid user' + CRM.AuthenticationError);
}
|
---|