Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6754701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:18:43+00:00 2026-05-26T13:18:43+00:00

I have some 10 permission in my table. Some users have all 10 permissions.

  • 0

I have some 10 permission in my table. Some users have all 10 permissions.

Each page in the website have to check whether the user have the particular permission.

In the home page I can do a query and store the permission list to a list box, and check whether Permission1 is in the list box, when I navigate to other page Again I have to check whether the permission is present in the list box.

Here the list box is in home page and I will not be able to access it in page2.
I have to check permission in page load in page 2.

How can I access the list of permission in page2 can I add to session?

Is there any better way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T13:18:43+00:00Added an answer on May 26, 2026 at 1:18 pm

    You could store your data in the session variable, but I don’t like that option at all. The Session variable relies on keys to extract its values, it is not strongly typed, and if you are load balancing your application, you need a more elaborate way to keep sessions synchronized across servers.

    We use for that type of requirement a Class library that contains a Singleton for the particular data we need to retrieve. The example below will retrieve from the database the list of Permissions only once, and cache it in the singleton. It is accessible from all your pages.

        /// <summary>
        /// Singleton that retrieves and stores the common list of permissions.
        /// </summary>
        public static class Permissions
        {
            private static List<String> instance = null;
    
            /// <summary>
            /// Gets the permissions.
            /// </summary>
            /// <returns></returns>
            static public List<String> GetPermissions()
            {
                if (instance == null)
                    instance = DatabaseHelper.GetPermissionsFromDatabase();
    
                return instance;
            }
        }
    

    This should meet your requirements.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have mssql2008 r2 sql server The problem: User has some column permissions on
Usually, I try to set my folders to have permission 775, but some web-hosting
Suppose, I have saved some permissions in the database by using this code: RoleRepository
I have some table: Title 1 | Title 2 | Title 3 | --------------------------------------------------
We have a system which has complex user permissions which determine which contacts a
I have to make a small website where I have 7 type of users.
I have a table in my SQL2008 DB for Users and one for Roles
have a security routine that, from an array of user names, passwords and permissions
How can I copy all the existing Sybase user's permissions to a new account?
I have a dynamic data ASP.NET application with a requirement to give some users

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.