Questions tagged [sqlmembershipprovider]

The `SqlMembershipProvider` class is used by the `Membership` and `MembershipUser` classes to provide membership services for an ASP.NET application using a SQL Server database.

The SqlMembershipProvider class is used by the Membership and MembershipUser classes to provide membership services for an ASP.NET application using a SQL Server database.

System.Object
. System.Configuration.Provider.ProviderBase
. . System.Web.Security.MembershipProvider
. . . System.Web.Security.SqlMembershipProvider

Namespace: System.Web.Security
Assembly: System.Web (in System.Web.dll)

To manually create the database, run the Aspnet_regsql.exe executable found in the %systemroot%\Microsoft.NET\Framework\ versionNumber folder and specify the -A m option (for example aspnet_regsql.exe -A m). The database created is called Aspnetdb. Alternatively, run Aspnet_regsql.exe to pull up the GUI configuration mode and choose to configure all ASP.NET Features.

http://msdn.microsoft.com/en-us/library/system.web.security.sqlmembershipprovider(v=vs.110).aspx

201 questions
0
votes
1 answer

custom membership provider asp.net

I have a website that is already built using the default aspnet membership provider. I am looking to expand it in order to slightly modify the functions. From my understanding, I would want to create a custom membership provider inheriting from the…
David Jacobsen
  • 454
  • 3
  • 20
0
votes
1 answer

CreateUserWizard and ContinueButton control

1) A) One of the CreateUserWizard’s optional controls is also ContinueButton control. This control raises ContinueButtonClick event ( if CommandName is set to Continue ), but what is the purpose of this event? Thus, when should ContinueButton…
SourceC
  • 3,829
  • 8
  • 50
  • 75
0
votes
2 answers

'System.Web.Security.SqlMembershipProvider'

I am running my website on IIS. The default page shows this message: Server Error in '/Enterprise/EnterpriseASP' Application. Unable to cast object of type 'System.Web.Security.SqlMembershipProvider' to type …
Manori Sannasgama
-1
votes
1 answer

SqlMembershipProvider as a remote service

Is there any solution out there for utilizing SqlMembershipProvider from a different server? Motivation: The security zoning policy at our company doesn't allow any more to directly connect to the database from web servers. We have a legacy ASP.NET…
-1
votes
2 answers

SQL GetProfileElement - migrating sqlmembership provider to identity 2.0

My project is MVC5, I am trying to import users data from SqlMembership Provider to Identity 2.0. I am using: dbo.fn_GetProfileElement('FirstName',Prfl.PropertyNames,Prfl.PropertyValuesString) FirstName, I get the following error: Cannot insert the…
hncl
  • 2,295
  • 7
  • 63
  • 129
-1
votes
1 answer

sqlmemebrship provider issue

I have a problem with,sqlmmebership sign out.My project consist of one main page,and other pages is loaded via ajax inside of this main page.I put a sign out button main page but when I click on it ,it happen nothing and after click ones again…
sakir
  • 3,391
  • 8
  • 34
  • 50
1 2 3
13
14