Posted on: 8/25/2014 9:28:27 AM | Views : 447

I use ChangePassword control with default changepasswordtemplate. My ChangePassword does not use MembershipProvider.
THe ChangePassword control isnside UpdatePanel control with UpdatePanelAnimationExtender.
I only add event xxxx_ChangingPassword(). When I check the password and it is true, the browser keep loading until I got error
A network-related or instance-specific error occurred while establishing a connection to SQL Server. it is ok if the password check false and I set e.Cancel = true. It seem that they like looping inside, make connection timeout.
protected void XXX_ChangingPassword(object sender, LoginCancelEventArgs e) { Literal FailureText = ((Literal)XXX.ChangePasswordTemplateContainer.FindControl("FailureText")); Boolean result = false; using (Utility um = new Utility ()) { result = um.Ch ...

Go to the complete details ...