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

  • Home
  • SEARCH
  • 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 6250405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:25:02+00:00 2026-05-24T13:25:02+00:00

I have a problem with DataTable stored in Session and code execution when retrieving

  • 0

I have a problem with DataTable stored in Session and code execution when retrieving it from this Session. Maybe this isn’t a problem and is just me wrongly understanding how instances and references really work.

I have a POCO class User where I store all the data of logged in user. The POCO Class look like this:

public class User 
{
   public int UserID { get; set; }
   public string UserFirstName { get; set; }
   public string UserLastName { get; set; }
   public DataTable UserRights { get; set; }
}

Once the user is logged in (on login page) I create an instance of User class and I store all retrieved data from login into Session["User"]:

User _user = new User();
_user = MyLogin.GetUser() // method returns filled User object with data from db
Session["User"] = _user; // I store it into session

Then on my pages when I need data from Session for user rights (stored in datatable) I look into session and retrieve DataTable:

User _currUser = (User)Session["User"];
DataTable dt = new DataTable();
dt = _currUser.UserRights;

This code works OK, but some strange behavior starts when I look into Session for DataTable UserRights multiple times on the same page.

Example: I have two user controls on page and in each one of them I look into session for DataTable like in the code above. Then if I change DataTable object instance in one of the user controls code like this for example:

dt.Columns.Remove("RoleID");

…this change impacts the instance in second user control too(??). And the same goes if give instances different names:

// FirstUserControl.ascx.cs
User _currUser1 = (User)Session["User"];
DataTable dt1 = new DataTable();
dt1 = _currUser1.UserRights;
dt1.Columns.Remove("RoleID")

// SecondUserControl.ascx.cs
User _currUser2 = (User)Session["User"];
DataTable dt2 = new DataTable();
dt2 = _currUser2.UserRights; <--- dt2 is without column "RoleID" too!? 

Can somebody in a clear way explain to me why this is happening and how instances and references works in this example (it looks I don’t understand them correctly). I always thought that if I execute code like the one above I would get dt1 and dt2 DataTable object which will not have anything in common when processing them.

  • 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-24T13:25:03+00:00Added an answer on May 24, 2026 at 1:25 pm

    DataTable is a reference type, dt1 and dt2 are just memory addresses to the chunk of memory holding the datatable, they always refer to the same object.

    In this case you can use DataTable.Copy()

    User _currUser1 = (User)Session["User"];
    DataTable dt1 = _currUser1.UserRights.Copy();
    dt1.Columns.Remove("RoleID")
    
    // SecondUserControl.ascx.cs
    User _currUser2 = (User)Session["User"];
    DataTable dt2 = _currUser2.UserRights.Copy();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have problem compilin this code..can anyone tell whats wrong with the syntax CREATE
I'm having a bit of a problem. I have a datatable in the parent
Let's say that I have a form which runs a stored procedure. This stored
I have problem in some JavaScript that I am writing where the Switch statement
I have problem with return statment >.< I want to store all magazine names
I have problem with starting processes in impersonated context in ASP.NET 2.0. I am
I have problem with ActionLink. I'd like to pass to my ActionLink parameter for
I have problem when I try insert some data to Informix TEXT column via
I do not have problem as such but I am quite new to Ruby.
I have a problem using the Java search function in Eclipse on a particular

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.