Reputation: 3
Does anyone know the content of the Membership.ValidateUser(...) method in ASP.net?
Upvotes: 0
Views: 603
Reputation: 12313
You can download the Microsoft source code ProviderToolkitSamples.msi from here:
The method is in the SQLMembershipProvider.cs file.
http://weblogs.asp.net/scottgu/archive/2006/04/13/442772.aspx
Upvotes: 1
Reputation: 7266
Download the .NET Reflector. Then add System.Web.dll and go to:
System.Web.Security Namespace -> SqlMembershipProvider Class -> ValidateUser Method
Upvotes: 0
Reputation: 1166
Not quite sure about what you mean but here is the MSDN reference: http://msdn.microsoft.com/en-us/library/system.web.security.membership.validateuser.aspx
Hope that helps!
Upvotes: 0