2009-10-16 57 views

回答

0

基礎MembershipProvider類具有一個名爲ChangePasswordQuestionAndAnswer的可覆蓋方法。您可以使用它來更改安全問題和答案。簽名看起來像這樣:

public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) 
    { 
     // your implementation here. 
    }