Sachin Kainth
Sachin Kainth

Reputation: 46780

How do I begin to implement Forms Authentication in .NET

I want to use forms authentication in my .NET application. How do I go about doing this?

Upvotes: 1

Views: 73

Answers (1)

JRadness
JRadness

Reputation: 304

Not sure if this answers your question but if this is a new project I would highly recommend using ASP.NET Membership stuff.

ASP.NET membership enables you to validate and manage user information for your Web application. It provides functionality for validating user credentials, creating and modifying membership users, and managing user settings such as passwords and e-mail addresses. ASP.NET membership is primarily intended for use with ASP.NET forms authentication, but can be used anywhere within an ASP.NET application.

Managing Users by Using Membership

Upvotes: 1

Related Questions