Click here to Skip to main content
15,899,026 members

Comments by Pradeepp Anugu (Top 3 by date)

Pradeepp Anugu 21-Mar-13 9:32am View    
thanks for ur reply


Protected Sub BoomerangLoginForm_LoginError(ByVal sender As Object, ByVal e As System.EventArgs) Handles BoomerangLoginForm.LoginError
If Not String.IsNullOrEmpty(BoomerangLoginForm.UserName.Trim()) Then
Dim oWebUser As MembershipUser = Membership.GetUser(BoomerangLoginForm.UserName.Trim())
If oWebUser IsNot Nothing Then
'if user exist
If Membership.GetUser(DirectCast(BoomerangLoginForm.FindControl("UserName"), TextBox).Text.Trim()).IsLockedOut Then
BoomerangLoginForm.FailureText = ""
Dim _alertString As String = "Sorry! Your attempt to log in is automatically denied as you have thrice entered an incorrect passowrd. Please click " & _
"" & _
"Forgotten your password
" & _
" to request a new password to enable you to access the secured pages of the website."
lblMessage.Text = _alertString
Page.ClientScript.RegisterStartupScript(Me.GetType(), "MyScript", _
"javascript:showMessage();", True)

------- > this is from where am calling java script function 'ScriptManager.RegisterClientScriptBlock(Page, Me.GetType(), "MyScript", _
' "javascript:showMessage();", True)


Else
BoomerangLoginForm.FailureText = "Invalid login id or password."
End If
Else
'if user does not exist
'LoginForm.FailureText = "Login ID does not exist."
BoomerangLoginForm.FailureText = "Invalid login id or password."
End If
End If

End Sub
Pradeepp Anugu 21-Mar-13 9:29am View    
currently I am using IE 8.....
Pradeepp Anugu 21-Mar-13 9:27am View    
not in page load in button click event