rajithe
rajithe

Reputation: 3

Content of ValidateUser method

Does anyone know the content of the Membership.ValidateUser(...) method in ASP.net?

Upvotes: 0

Views: 603

Answers (3)

PussInBoots
PussInBoots

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

gbs
gbs

Reputation: 7266

Download the .NET Reflector. Then add System.Web.dll and go to:

System.Web.Security Namespace -> SqlMembershipProvider Class -> ValidateUser Method

Upvotes: 0

Vaibhav
Vaibhav

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

Related Questions