R – How to configure SharePoint forms based authentication

forms-authenticationsharepoint

Can someone please tell me how to do the following in SharePoint (WSS 3.0):

Have a user log in (user name and password) on a page and then if correct display the home page of a WSS 3.0 site?

I think it's called forms based authentication.

Best Answer

Here's a video about using Forms Auth. with WSS3 and here are some samples. Basically, you use the login.aspx page in _layouts to collect credentials and cache them. You have to modify web.config to use the membership provider. More on that here.

Related Topic