-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a production ASP.Net MVC application that has been using the membership service. It has worked fine, up until today. Nothing has changed on the server, but I now have this error:
System.Configuration.Provider.ProviderException:
The 'System.Web.Security.SqlMembershipProvider' requires a database…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a C# custom ASP.Net MembershipProvider. When the user attempts to navigate to another part of the site after IIS is restarted, it doesn't navigate to the login page to collect credentials, but instead attempts to authenticate with empty credentials.
Can anyone tell me what I have to do…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using the MembershipProvider that is part of the MVC2 default project.
I'd like to be able to take a list of user names, and log the users off, and destroy their session if needed. The closest I can seem to come is this:
foreach(string userName in UserNames)
{
MembershipProvider MembershipProvider…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I develop an asp.net web application and I use ASP.NET membership provider. The application uses the membership schema and all required objects inside main application database
However, during development I have to switch to various databases, for different development and testing scenarios.…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I was using the default AspNetSqlMembershipProvider in my application. Authentication is performed via an AuthenticationService (since I'm also supporting other forms of membership like OpenID).
My AuthenticationService takes a MembershipProvider as a constructor parameter and I am injecting the…
>>> More