I would like to validate a password field for creating / updating users in asp.net (.net 3.5). The password will be used for a MembershipProvider.
I\'m a little confused. In many tutorials, including some in MSDN and ASP.NET website, it\'s almost always about Membership. But when examining the AccountModel class that\'s created by default, it\'s
I am pretty sure I can get the results I want from a single Linq statement, I am just not able to find it by myself! This is what I have so far:
I want to save some info in the Session when the users successfully logins with my custom MembershipProvider, but I have no access to the Session in the provider\'s ValidateUser method.
I have been thinking for a good while about how to tackle the problem of implementing an ID based user system while using ASP.NET MVC. My goals, much like StackOverflow\'s system are as follows:
We have a simple ASP.NET app tha开发者_如何学运维t uses the ASP.NET SqlMembershipProvider and all is great.
I\'m having a problem with a custom Membership implementation for ASP.NET using EF. The thing is, my web.config features the default values for the provider but at runtime those default are only being
I\'m using the change password feature of the standard AspNetSqlMembershipProvider in my ASP.NET MVC-2 app:
I have created a BasicMembershipProvider class that inherits from MembershipProvider, when implemented, the ValidateUser does not get called. This is my setup:
I am working on implementing a custom membership provider that works against an existing schema in my database and have a few thoughts/questions.