Click here to Skip to main content
15,879,474 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.7K   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.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Iesi.Collections;
////using Iesi.Collections.Generic;
using Aadhaar.Data.Entity.Components;


using Aadhaar.Data.Entity;

namespace Aadhaar.Data.Entity 
{    
	/// <summary>
	/// An object representation of the roleactions table
	/// </summary>
	[Serializable]
	public class roleactions
	{
		protected System.Int32 _Id;

		private Roles _Role;
		private Users _User;
		private actions _Action;
		private System.Int32 _PermissionType;

		public virtual System.Int32 Id
		{
			get
			{
				return _Id;
			}
			set
			{
				_Id = value;
			}
		}

		public virtual Roles Role
		{
			get
			{
				return _Role;
			}
			set
			{
				_Role = value;
			}
		}
		public virtual Users User
		{
			get
			{
				return _User;
			}
			set
			{
				_User = value;
			}
		}
		public virtual actions Action
		{
			get
			{
				return _Action;
			}
			set
			{
				_Action = value;
			}
		}
		public virtual System.Int32 PermissionType
		{
			get
			{
				return _PermissionType;
			}
			set
			{
				_PermissionType = value;
			}
		}


	}
}

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