I am using SharePoint 2007 Enterprise + Publishing portal template + Windows Server 2008. And I am developing using ASP.Net + C# + .Net 3.5 + VSTS 2008 on SharePoint Server 2007. I am developing a custom Forms authentication based on Forms authentication interface. I am learning using Forms Authentication with SharePoint and my confusion is about this method -- ValidateUser of Forms Authentication, here is MSDN link,
http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.validateuser.aspx
My confusions are about which component will call ValidateUser method?
- Do I need to call ValidateUser by myself (my application code), or depends on my needs (not always needed, depends on my application scenario);
- Is ValidateUser is called by SharePoint code (not my own application code), if yes, when (i.e. in what situations will SharePoint calls ValidateUser method, or say in other words, what operation in SharePoint will trigger invocation of this method)?
thanks in advance, George