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

Extending ASP.NET role based Security with Custom Security Module (Permission Based, Page Level Authorization)

Rate me:
Please Sign up or sign in to vote.
4.80/5 (18 votes)
11 Nov 2011Ms-PL5 min read 107.8K   9.3K   74  
This project intends to extend the default ASP.NET role based Security to include Permission Based / Page Level Authorization Layer. Works with both ASP.NET and ASP.NET MVC. Permission rules to Allow/Deny access to website resources (like "Folder/File.aspx" or "Controller/Action") are stored in DB.
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Home Page
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <h2><%= Html.Encode( ViewData["Message"] ) %></h2>
    <p>
    <div style="border:solid 1px #333333;">
<ul style="color:#ff0000">
<li>Please <%= Html.ActionLink("Register","Register","Account",null,null) %> and add yourself to "SUPER Admin" role.</li>
<li>"Permissions" page will be visible once you add yourself to "SUPER Admin" role.<b>(By clicking on the UserId on the "Users" window and adding yourself to "SUPER Admin" role in UserDetails window.)</b></li>
<li>Create "EXCLUSIVE" permissions to the locations (Controller\Action) at "Permissions" page {Visible after Login}.</li>
<li>Remove this message div from "Login.aspx" once you have created your Administrator login and created permission rules.</li>
</ul>
</div>
    </p>
</asp:Content>

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 Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
Singapore Singapore
I love programming, reading, and meditation. I like to explore management and productivity.

Comments and Discussions