Click here to Skip to main content
15,881,938 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I saw in the below link that clearly explained about session management in asp.net but same implementation i want do in MVC4.

http://www.codeproject.com/Articles/8467/Simple-ASP-NET-Session-Management-Framework


Could you please help on the below things.
Instead of pageload and
XML
this.Page_Load
<pre lang="cs">private void InitializeComponent()
  {
    this.Load += new System.EventHandler(this.Page_Load);
  }
</pre>


what i have to use in mvc4?
Posted
Updated 14-Sep-15 21:50pm
v3
Comments
ZurdoDev 15-Sep-15 14:41pm    
Why do you want to do that? Why do you need to customize the session? Can't you just use the built-in Session?
DGKumar 17-Sep-15 3:45am    
1. If i open window that should provide multiple tabs with same session in this case i want to maintain multiple session ids for individual tabs.
Here i want to maintain different type of users data in different tabs of particular window.
Some one told the solution is there but i am not able to get.
I am ready that implement this in code level /IIS level.
2. The next tab should get the current id and provide new session id to maintain another user information.
3. Just i am trying to implement same thing that which has already implemented in Internet explorer as New session window in my code side.
DGKumar 17-Sep-15 3:54am    
User wants to maintain his data and another user data with in same browser but with in different tabs.
Is there any solution that without using session?
If is there i will modify session concept in my code.

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900