我想爲用戶提供密碼重置方法。當用戶選擇發送密碼重置時,會向他們發送電子郵件通知。 現在我正在從一個存儲庫工作,我希望調用存在的方法,但不知道如何去做這個,因爲我對c#很陌生。 在用戶存儲庫的方法是 public bool RequestPasswordReset(string emailAddress)
{
try
{
User user = th
微軟將提供一個new Membership system called ASP.NET Identity(也是ASP.NET MVC 5中的默認設置)。我發現sample project,但是這沒有執行密碼重置。 在密碼重置的話題剛剛找到這篇文章:Implementing User Confirmation and Password Reset with One ASP.NET Identity