MembershipProvider in .NET 4.0

前端 未结 4 1979
感情败类
感情败类 2021-02-18 18:16

How can I add the MembershipProvider class to my .NET 4.0 project in VS 2010 B2?

I want to customize a MembershipProvider, but I cannot without adding this class. Please

相关标签:
4条回答
  • 2021-02-18 18:28

    Interesting. However, build errors are your friend ;)

    Attempting to build a class library built as you describe, I get the following build error:

    The type name 'MembershipProvider' could not be found. This type has been forwarded to assembly 'System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. Consider adding a reference to that assembly.

    Following the instructions (adding a reference to System.Web.ApplicationServices) allows me to carry on as expected.

    0 讨论(0)
  • 2021-02-18 18:33

    There is an reference not set oder an Missing using Namespace is System.Web.Security

    for more info checkt out MSDN

    0 讨论(0)
  • 2021-02-18 18:42

    On my case, I am using Visual Studio 2019, I need to add both of these:

    System.Web.ApplicationServices
    

    and

    System.Configuration
    

    In order to build it successfully upon inheriting MembershipProvider to create my own MyMembershipProvider class.

    0 讨论(0)
  • 2021-02-18 18:44

    The MembershipProvider abstract class is part of the System.Web.ApplicationServices namespace in the .net 4.0 Framework. Add a reference to that assembly and it should solve the issue.

    0 讨论(0)
提交回复
热议问题