有没有办法从changepassword方法获取完整的消息响应?我需要找出它为什么会返回虚假。它在过去从未有过,当前密码是正确的,emailresponse变量也是如此。
MembershipUser u = Membership.GetUser(emailresponse);
bool changed = u.ChangePassword("Password~123", txtPassword.Text);
if (changed){
//code emitted
}