Click here to Skip to main content
15,896,359 members
Articles / Web Development / ASP.NET

Forms Authentication and Role based Authorization: A Quicker, Simpler, and Correct Approach

Rate me:
Please Sign up or sign in to vote.
4.78/5 (120 votes)
3 Dec 2009CPOL11 min read 380.3K   12.5K   368  
This article describes a correct and smarter way of implementing Role based authorization with Forms authentication in ASP.NET.
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

/// <summary>
/// Authenticates user agains the data source
/// </summary>
public class UserAuthentication
{
    public static UserAuthentication Instance
    {
        get
        {
            return new UserAuthentication();
        }
    }
    public UserAuthentication()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    /// <summary>
    /// Authenticates user agains a data source and populates the user roles
    /// in the out parameter
    /// </summary>
    /// <param name="userName"></param>
    /// <param name="password"></param>
    /// <param name="commaSeperatedRoles"></param>
    /// <returns></returns>
    public bool AuthenticateUser(string userName, string password, out string commaSeperatedRoles)
    {
        bool success = false;
        commaSeperatedRoles = string.Empty;

        //The user credential check is hard coded here. This should be done
        //against a user database in real projects
        if (string.Compare(userName,"Administrator",true) == 0 && password == "123")
        {
            commaSeperatedRoles = "Admin";
            success = true;
        }

        if (string.Compare(userName,"John",true) == 0 && password == "123")
        {
            commaSeperatedRoles = "User";
            success = true;
        }

        return success;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder SmartAspects
Bangladesh Bangladesh
I write codes to make life easier, and that pretty much describes me.

Comments and Discussions