-4

我試圖通過從基類繼承來在asp.net mvc中實現自己的成員資格。ASP.NET MVC錯誤中的自定義成員身份

public override void CreateUser(string username, string password) 
    { 
     this.repository.CreateUser(username, password); 
    } 

但是,當我試圖建立application.I有以下錯誤。

Membership.CreateUser(string, string)': no suitable method found to override  
Membership does not implement inherited abstract member 'System.Web.Security.MembershipProvider.CreateUser(string, string, string, string, string, bool, object, out System.Web.Security.MembershipCreateStatus)' 

我試圖改變原始函數中的參數,但我得到了同樣的錯誤。 請指導我,我是ASP.NET和C#的新手。 感謝

+0

什麼是錯誤你越來越?你的問題到底是什麼? – Andorbal 2013-02-14 16:19:20

+4

恭喜! – 2013-02-14 16:19:37

+0

這不是問題嗎?你甚至不說是否有錯誤?你的基礎班是什麼? – bluetoft 2013-02-14 16:19:48

回答

0

你可以試試這個

public void CreateUser(string username, string password) 
     { 
      this.repository.CreateUser(username, password); 
     } 

或這一個

public override MembershipUser CreateUser(string username, string password, string email, out MembershipCreateStatus status) 

這裏有一個tutorial,將引導您如何:實現自定義成員資格用戶