Why will this not display the failure text? This is using the same FailureText control that displays error messages for log in errors, such as invalid password, and locked or disabled accounts.
Would I have to setup a new control and use that, and if so how?
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
If Request.QueryString("suspended") IsNot Nothing Then
If Request.QueryString("suspended").ToString() = "true" Then
LoginUser.FailureText = "Your account has been Suspended - Contact the system administrator"
End If
End If
End Sub