|
<%
If Request("WrongPasscode") = "True" then
Response.Write " "
Response.Write "An Invalid Passcode has been entered below. Try again or "
Response.Write "contact your Facilitator to get the correct Passcode. "
Response.Write " "
End If
If Request("WrongStatus") = "True" then
Response.Write ""
Response.Write "Your Facilitator Access Request has not been approved yet. "
Response.Write "Contact the Information Exchange to get access to the system. "
Response.Write " "
End If
If Request("WrongEmail") = "True" then
Response.Write ""
Response.Write "An Invalid E-mail has been entered below. Contact the Information Exchange or "
Response.Write "go to the Request Facilitator Access Page to request access to the system. "
Response.Write " "
End If
If Request("WrongPassword") = "True" then
Response.Write ""
Response.Write "An Invalid Password has been entered below. Try again or "
Response.Write "contact the Information Exchange to get your password reset. "
Response.Write " "
End If
If Request("NoGroup") = "True" then
Response.Write ""
Response.Write "A group does not exist for this E-mail ID. "
Response.Write "Contact the Information Exchange to get access to the system. "
Response.Write " "
End If
%>
|