active questions tagged session-state - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T20:09:18Zhttp://stackoverflow.com/feeds/tag/session-statehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1887828/if-session-expires-whether-the-viewstate-remains0if session expires whether the viewstate remains ?SmartestVEGA2009-12-11T12:40:25Z2009-12-11T13:10:56Z
<p>i have set the session timeout to 20 minutes in IIS level and there is no session entries in the web.config.</p>
<p>How can i know whether my session exprired in my website?</p>
<p>does the state will maintain ? do i can see the values in the text-boxes after the timeout?</p>
http://stackoverflow.com/questions/1869043/alternatives-to-using-session-variables-in-asp-net-including-mvc1Alternatives to using session variables in ASP.NET (including MVC)jamauss2009-12-08T18:48:11Z2009-12-09T02:23:40Z
<p>I apologize if this has been asked before, but I haven't quite found the specific question I have in my head.</p>
<p>For the website I am building (using ASP.NET MVC) - performance is an important feature. Also, there is a chance that the site could be hosted in an environment where the Application Pool gets recycled every 20 minutes (or sooner if the memory threshold is reached). I would like to be completely independent of relying on session variables and instead, store a GUID-like value in a cookie. My reasoning is - I don't know how long the session will last because of the AppPool recycling and don't want their session to timeout prematurely and cause them to have to login repeatedly.</p>
<p>The GUID value in the cookie would act as a lookup key to a table where I store session-like information (a user ID value, etc.). So if I needed that data I could retrieve it from the database. I would still make use of the Session_OnEnd event to clear out that session table of rows with a "last activity" value of more than 20 minutes old (or however long sessions are configured to last). So I guess I would still be using session state, just not session variables.</p>
<p>My concern though, again, is about performance. Therefore, I was curious if there are any better methods for avoiding use of session variables while still maintaining the ability to know things about who the user is and manage their visits to the site in a "session-like" way. I am still a newbie to MVC but have plenty of experience in ASP.NET over the years so, I hope my question makes sense!</p>
<p>EDIT: I'm kind of shying away from wanting to use SQL Session State because I will likely be in a shared sql server hosting environment and don't think I will have a login with the ability to create/run jobs if necessary for deletion of expired sql session data, etc. Are there any real drawbacks to depending on Session_OnEnd with a cookie in the AppPool recycling scenario? Could Session_OnEnd not execute for sessions that are current when the AppPool recycles?</p>
http://stackoverflow.com/questions/1855218/membership-timeout-and-session-timeout0membership timeout and session timeoutAhmy2009-12-06T12:09:40Z2009-12-06T12:31:37Z
<p>I need to set memebership timeout to be less than session timeout to avoid using the membership and the login session is expired, this is a problem that i face in my asp.net application that i am using login control and when the user send a comment and the login control session is expired it should not accept the comment and i knew later that i have to make membership timeout expire before login control session expiration.</p>
<p>So how can i make membership timeout to expire b4 session expiration??</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1844363/should-asp-net-session-state-be-stored-in-a-database-separate-from-application-da1Should asp.net session state be stored in a database separate from application data?dan2009-12-04T01:41:34Z2009-12-04T01:46:15Z
<p>I am using SQL Server for persisting session state in a asp.net web application.</p>
<p>Is there a best practice for the location of the session data? Should it be in the database along with the application data or in a separate 'Application Services Database' as Microsoft suggests by default.</p>
<p>The application services database would also house other provider data (ie. roles, membership, etc.)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1839227/checking-how-sessions-are-implimented-in-my-code-1Checking how sessions are implimented in my code [closed]SmartestVEGA2009-12-03T11:01:53Z2009-12-03T12:13:33Z
<p>i have a webform.. which a form with different views ... i need to check how sessions are implemented in this..like viewstate, cookies or something else..</p>
<p>please help me !!</p>
http://stackoverflow.com/questions/1839311/session-problem-in-asp-net-website0Session problem in asp.net websiteSmartestVEGA2009-12-03T11:21:14Z2009-12-03T11:52:39Z
<p>I have an asp.net website, where there is no where session is implemented.</p>
<p>But i could see the session is timing out when i take the website after deploying in the production server ... </p>
<p>i checked the session entries in the web.config file... and searched session in the code..</p>
<p>nowhere i find the entry...</p>
<p>now i want to put a message box while session timeout ..how to do this..please help!!</p>
http://stackoverflow.com/questions/1838760/popup-while-session-timeout0Popup while session timeout SmartestVEGA2009-12-03T09:31:28Z2009-12-03T09:36:02Z
<p>How to set a pop up message box saying... "please end your session and start again" in my asp.net webform?</p>
http://stackoverflow.com/questions/1836142/sql-server-session-state-causing-serialization-error0SQL Server Session State causing Serialization errorJim Harris2009-12-02T22:00:58Z2009-12-03T09:31:57Z
<p>I have an .Net 3x application using default WCF serialization and recently setup application to use SQL Server Session state and am not being able to store those objects in session state with sql server, only in proc session state.</p>
<p>Getting errors on various classes stating:</p>
<p>Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode. </p>
<p>I assumed that the default serialization of wcf would be sufficient but apparently not. Any ideas on what needs to be done to correct this short of editing entire app and adding [Serializable] to classes?</p>
http://stackoverflow.com/questions/1342970/c-how-to-set-up-and-use-session-state-from-preinit0c# how to set up and use session state from preinitPraesagus2009-08-27T18:32:56Z2009-12-01T16:29:09Z
<p>OK so to set and read variables from the current session</p>
<pre><code>String Myvar =(string) System.Web.HttpContext.Current.Session[“MyVariable”]
</code></pre>
<p>To set</p>
<pre><code>System.Web.HttpContext.Current.Session[“MyVariable”] = “NewValue”
</code></pre>
<p>I can do neither, I get a <code>System.NullReferenceException: Object reference not set to an instance of an object.</code> from System.Web.HttpContext.Current.Session. </p>
<p>In my web.config I have </p>
<pre><code><sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" cookieless="false" timeout="20">
</sessionState>
</code></pre>
<p>I have read a dozen articles on the the necessity of <code>IHttpHandler</code> and an <code>IRequiresSessionState</code> interface. I think the issue may be caused because I am requesting this information in <code>Page_PreInit</code>. I found a <strong><a href="http://stackoverflow.com/questions/276355/can-i-access-session-state-from-an-httpmodule">solution</a></strong> in a stack overflow article but I don't seem be using it properly to actually make this go.</p>
<p>I am not sure what I am missing. Thanks in advance.</p>
http://stackoverflow.com/questions/1821937/c-stateserver-maintains-session-between-machines0c# stateserver maintains session between machinesPraesagus2009-11-30T19:38:24Z2009-12-01T11:50:54Z
<p>Hi, I am sure that I have made some painfully obvious blunder(s) that I just cannot see. I am hoping one of you can set me straight.</p>
<p>I my session management is working perfectly except that if a user on one machine enters data, a user who starts a session on another machine will also retreive the session information from the first. Not so good. :(</p>
<p>I call my sessions like this:</p>
<pre><code>UserInfo userinfo = UserInfo.Session;
</code></pre>
<p>My session mgt class uses this:</p>
<pre><code>static UserInfo userInfo;
static public UserInfo Session
{
get
{
if (userInfo == null)
{
userInfo = new UserInfo();
userInfo.ResetSessionTime();
}
return userInfo;
}
}
</code></pre>
<p>I read and write the data like this. I realize that I could serialize the entire class, but it seems like a lot more overhead to serialize and deserialize an entire class each time the class is called as opposed to just grabbing the one or two items I need.</p>
<pre><code>Decimal _latitude;
private String SessionValue(String sKey, String sValue, String sNewValue)
{
String sRetVal = "";
if (sNewValue == null)//not wanting to update anything
{
if (sValue == null)//there is no existing value
{
sRetVal = (String)System.Web.HttpContext.Current.Session[sKey];
}
else
{
sRetVal = sValue;
}
}
else
{
System.Web.HttpContext.Current.Session[sKey] = sNewValue;
sRetVal = sNewValue;
}
return sRetVal;
}
public Decimal Latitude
{
get { return SessionValue("Latitude", _latitude); }
set { _latitude = SessionValue("Latitude", _latitude, value); }
}
</code></pre>
<p>Thanks for your help</p>
http://stackoverflow.com/questions/1817431/session-state-with-mvp-and-application-controller-patterns1Session State with MVP and Application Controller patternsGraham Bunce2009-11-30T01:18:40Z2009-11-30T13:09:06Z
<p>Hi,</p>
<p>I've created an MVP (passive view) framework for development and decided to go for an Application Controller pattern to manage the navigation between views. This is targeted at WinForms, ASP.NET and WPF interfaces.</p>
<p>Although I'm not 100% convinced that these view technologies really swappable, that's my aim at the moment so my MVP framework is quite lightweight.</p>
<p>What I'm struggling to fit in is the concept of a "Business Conversation" that needs state information to be either (a) maintained for the lifetime of the View or, more likely, (b) maintained across several views for the lifetime of a use case (business conversation). I want state management to be part of the framework as I don't want developers to worry about it. All they need to do is to "start" a conversation, "Register" objects and the framework does the rest until the "end" a conversation.</p>
<p>Has anybody got any thoughts (patterns) to how to fit this into MVP? I was thinking it may be part of the Application Controller responsibility (delegating to a Conversation Manager object) as it knows about current state in order to send the user to the next view.... but then I thought it may be up to the Presenter to start and end the conversation so then it comes down the presenters to manage conversations and the objects registered for the that conversation. Unfortunately that means presenters can't be used in different conversations... so that idea doesn't seem right.</p>
<p>As you can see, I don't think there is an easy answer (and I've looked for a while). So anybody else got any thoughts?</p>
http://stackoverflow.com/questions/1813734/asp-net-session-state-server-with-sql-server0Asp.net session state server with SQL Serverspender2009-11-28T20:39:38Z2009-11-28T22:24:13Z
<p>We're trying to get session state working using the following web.config line:</p>
<pre><code><sessionState
mode="SQLServer"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="Data Source=dbServer;User ID=stateUser;Password='thepassword'"
cookieless="false"
timeout="20"/>
</code></pre>
<p>On dbServer, we've run the following command to set up the ASPState db:</p>
<pre><code>aspnet_regsql.exe -S localhost-E -ssadd -sstype p
</code></pre>
<p>On the webServer, we've started the ASP.Net state service, however, no records show up in tables ASPStateTempApplications or ASPStateTempSessions, and it seems very much like session is still being stored in process.</p>
<p>What's wrong? Should the state service be running on the DB server? Does it get installed with IIS, because it's not available on that machine, despite .net 3.5.1 being installed.</p>
<p>The IIS logs show no hint of failure. What's wrong?</p>
http://stackoverflow.com/questions/1550111/window-open-clears-session0window.open() clears sessionwhoopy_whale2009-10-11T07:38:08Z2009-11-28T22:00:01Z
<p>Hi,</p>
<p>I have several portlets in my application. If I open a url using window.open() method, the session id changes and causes an error in other portlets. If I don't open this url, everything works fine. But once this new window is opened, the session is cleared and the rest of the portlets throws an exception since some values are missing.
In the address bar of the browser I typed in javascript:alert(document.cookie); to see the JSESSIONID. It remains constant throughout the page and changes when I click the link that launches a new url in new window. I used IE8.</p>
<p>Any suggestions to maintain the session state in IE would be greatly appreciated.</p>
http://stackoverflow.com/questions/1781293/structure-saved-in-a-session-variable0Structure Saved in a Session VariableLakeshore2009-11-23T05:41:48Z2009-11-23T06:08:05Z
<p>The ReportInfo is a structure. The structure works fine on one web page but I am trying to use it on another web-page. Here is where I saved the ReportInfo structure to the Session Variable</p>
<p>Session["ReportInfo"] = reportInfo;</p>
<p>On the other web-page, I re-created the Structure and then assign the session variable to it, like this...</p>
<p>reportInfo = (ReportInfo)(Session["ReportInfo"]);</p>
<p>I get the following run-time error:</p>
<p>System.InvalidCastException was unhandled by user code
Message="Specified cast is not valid."
Source="App_Web_-s8b_dtf"</p>
<p>How do I get the ReportInfo structure out of the Session variable to use again?</p>
http://stackoverflow.com/questions/1777921/website-session-analysis0Website Session AnalysisPaul Tarjan2009-11-22T05:37:01Z2009-11-22T13:11:32Z
<p>I'd like to know the best way to deep dive into the flow of my users. For example, I have 4 pages in my flow, how can I analyze which users abandon on which step? I can definitely do it by hand with logging, etc, but I'd rather use an off the shelf solution.</p>
<p>I have apache request logs, as well as google analytics. Can these analyze users as sessions?</p>
http://stackoverflow.com/questions/1777555/buiding-asp-net-application-without-session-state4Buiding ASP.NET application without Session State?Herman2009-11-22T02:05:26Z2009-11-22T04:16:50Z
<p>I just finished watching Stefan Schackow's PDC 2009 <a href="http://microsoftpdc.com/Sessions/FT57" rel="nofollow">session</a> and he mentioned that he is surprised that people are still using Session State in ASP.NET. Session State is even used <a href="http://stackoverflow.com/questions/1464203/disable-session-state-per-request-in-asp-net-mvc">internally</a> in ASP.NET MVC.</p>
<p>Having worked with a legacy application where everything is put into a "in-proc" session (even datatables!), I've seen session abuse first-hand. </p>
<p>Is there a way to build an ASP.NET application without session state? How would you store information for each step of a typical e-commerce workflow?</p>
http://stackoverflow.com/questions/1775558/session-mode-in-asp-net2Session mode in ASP.Net?vaibhav2009-11-21T13:57:52Z2009-11-21T14:13:57Z
<p>Which session mode in the following ,should i implement for my ASP.Net website?</p>
<p>1)InProc .
2)State Server.
3)SQL Server.
4)Custom. </p>
http://stackoverflow.com/questions/1759391/session-cookies-across-browser-processes0Session cookies across browser processeshelixia2009-11-18T21:57:20Z2009-11-18T22:48:19Z
<p>Is it possible to use session cookies across browser sessions (specifically Internet Explorer). I would like a user to log in to my site and therefore get a cookie and when the user opens another IE process have that session cookie authenticate the user.</p>
<p>At the moment it is find if the user opens a new window or tab as this resides in the same process.</p>
http://stackoverflow.com/questions/1268102/classic-asp-session-and-web-garden-multiple-workers1Classic ASP session and Web Garden (multiple workers)H. G. Fischer2009-08-12T19:05:35Z2009-11-17T00:25:42Z
<p>We are having issues with IIS6 slowdowns when using more than 1.2GB of RAM in a single worker and would like to use more workers. However looks like ASP sessions are made by worker and when the browser accesses some page through another worker it losts the ASP session.</p>
<p>Do you have some tips on how to solve this problem?</p>
<p>We are considering to use some other way to manage session separately from IIS (not database, maybe memcache?). Do you recomend something?</p>
<p>Note.: The application is full of legacy code and we need to avoid big changes in code.</p>
http://stackoverflow.com/questions/1740860/http-session-tracking0HTTP Session Trackingrc2009-11-16T08:38:35Z2009-11-16T09:22:23Z
<p>Since HTTP is a stateless protocol, when a client makes a number of requests to the server, how does the server uniquely identify a particular client's requests over a period of time say t1, t2, t3..</p>
<p>I browsed the web and came across terms like session id, URL rewriting and cookies. But it would be great if someone explains it in a better way. Specifically which part of the HTTP request and response would be used for session tracking?</p>
http://stackoverflow.com/questions/1734655/iis-6-0-not-loading-sessionstate-for-net-3-5-application-using-httphandler0IIS 6.0 Not loading SessionState for .NET 3.5 Application using HttpHandlerJan de Jager2009-11-14T16:01:26Z2009-11-14T16:13:52Z
<p>QA and Dev enviroments work perfectly.
Handlers all implement the IRequiresSessionState marker.</p>
<p>Config File contains:</p>
<pre><code><pages enableSessionState="true">
</code></pre>
<p>and</p>
<pre><code><sessionState cookieless="AutoDetect" mode="InProc" timeout="20" />
</code></pre>
<p>IIS has session state enabled in application properties and Application is running in its own Application Pool....</p>
http://stackoverflow.com/questions/1734011/ihttphanlder-returns-null-session0IHttpHanlder returns null sessionJan de Jager2009-11-14T11:44:10Z2009-11-14T11:54:25Z
<p>So i have a couple of custom Http Handlers for different file types. I have implemented the IRequiredSessionState marker, but still recieving context.Session as null?</p>
<p>Do you need to initialize the Session somehow?</p>
http://stackoverflow.com/questions/1731283/net-httpsessionstate-case-insensitivity1.NET HttpSessionState Case InsensitivityAlison R.2009-11-13T19:20:15Z2009-11-13T21:25:16Z
<p>.NET's <strong>HttpSessionState</strong> using an "<strong>InProc</strong>" store seems to treat session variable key values as case insensitive. For example:</p>
<pre><code>session["foo"] = 1;
session["Foo"] = 2;
Trace.Write(session["foo"].ToString()); // => 2
</code></pre>
<p>This behavior appears to be undocumented, so I'm wondering if it is simply a side-effect of the underlying session store mechanism, or intentionally implemented by the class itself.
Since C# treats everything else as case-sensitive, it is a bit unnerving for the session to not act the same way. What gives? Does it differ by store type? Is it there for backwards-compatibility with VB?</p>
http://stackoverflow.com/questions/1725925/how-to-set-session-timeout-more-than-20-min0How to set session timeout more than 20 min.?Mehmet Kaleli2009-11-12T22:40:48Z2009-11-13T14:30:13Z
<p>I have a problem in my project. There is an admin panel in my website. People can login with a username and password can edit website content. Sometimes a user can take up to 30-40 minutes to enter content, but the session timeout expires after only 20 minutes.</p>
<p>I tried to configure this in the <code>web.config</code>, for example:</p>
<pre><code><authentication mode="Windows"/>
<sessionState timeout="60" />
</code></pre>
<p>and like this:</p>
<pre><code><system.web>
<sessionState timeout="60"></sessionState>
</system.web>
</code></pre>
<p>and also tried in my form like that:</p>
<pre><code>if (ds.Tables["LOG"].Rows.Count > 0)
{
Session["IsLoggedIn"] = "true";
Session.Timeout = 60;
Response.Redirect("Default.aspx");
}
else
{
Label1.Text = "Username/Password is wrong!!";
}
</code></pre>
<p>None of the solutions above worked. I tried each separately and together, but the session still expires after 20 minutes.</p>
http://stackoverflow.com/questions/345157/asp-net-how-to-clear-out-session-on-log-out4ASP.Net: How to clear out session on log outJack2008-12-05T21:12:58Z2009-11-11T05:59:55Z
<p>i redirect the user to the login page when user click log out however i don't think it clear any application or session because all the data persisted when the user log back in.</p>
<p>currently the login page have a login control and the code behind on the page only wired up the login Authenticate.</p>
<p>Can someone direct me to a good tutorial or article about handling log in and out of asp.net web site.</p>
http://stackoverflow.com/questions/1712402/asp-net-page-change-causes-an-object-array-in-session-to-be-unable-to-cast-to-it0ASP.NET page change causes an object array in Session to be unable to cast to it's own type??TheSoftwareJedi2009-11-11T01:20:51Z2009-11-11T01:44:32Z
<p>I am storing an array of a custom serializable class in session on my site. When a page on the site changes, suddenly it renders them invalid, and tells me that it can't cast the type to it's own type. I assume the class version numbers are changing or something?!</p>
<p>I'd appreciate avoiding the "don't use session" answers, unless it's a really simple solution. I'm not trying to redesign this whole process.</p>
<pre><code>Unable to cast object of type 'ShipmentPackages[]' to type 'ShipmentPackages[]'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidCastException: Unable to cast object of type 'ShipmentPackages[]' to type 'ShipmentPackages[]'.
Source Error:
Line 21: Else
Line 22: If Not Session("ShipmentList") Is Nothing Then
Line 23: ShipmentList = DirectCast(Session("ShipmentList"), ShipmentPackages()).ToList
Line 24: End If
Line 25: End If
</code></pre>
http://stackoverflow.com/questions/1651364/using-cookies-to-store-session-in-asp-mvc4Using cookies to store session in ASP MVCChristopher Stott2009-10-30T17:55:01Z2009-11-10T19:28:55Z
<p>Storing the entire session in a cookie has been standard in Rails for the last few years - is there an easy way to achieve something similar with ASP MVC?</p>
<p>By default, anything in Session / TempData is stored in memory on the server. In web.config this can be changed to an SQL Store / server-side cache. I'd like to be able to have these objects persisted in a cookie.</p>
<p>It looks like I could implement a custom Session-State Store Provider. Is there a simpler approach?</p>
http://stackoverflow.com/questions/1686586/keeping-state-in-non-model-controls-mvc0Keeping State in Non-model Controls - MVCIsrafel2009-11-06T10:03:31Z2009-11-06T10:43:22Z
<p>Ok, I'm very new to MVC so bear with me if I'm asking a ludicrously straightforward question. I'm trying to develop a project in MVC where certain controls on the view will keep state but are not actually part of the model. I want to display Asp.net Charts and xslt grids on a page based on the content of various dropdowns. The data for these would come from the model however the dropdownmenu's would be constant and so when you do a post on your given selections it saves the Dropdownlist selections and displays them as it would on a postback in Asp.net 2.0?</p>
http://stackoverflow.com/questions/1668989/profile-memory-usage-of-session-state-asp-net0Profile Memory Usage of Session State ASP.NetCharles Conway2009-11-03T17:43:21Z2009-11-03T17:56:33Z
<p>I'm trying to figure out the size of a particular session state. On one of our heavy pages (lots of data in a table) it gets progressively slower. The issue is resolved by logging out of the system. </p>
<p>I've profiled the page looking for JavaScript memory leaks, but I didn't find anything. My next plan of attack is too look at ViewState and Session State. ViewState will be simple, but Session State poses a challenge. </p>
<p>Does anyone know of any tricks or tools that would help figure out the size of Session State?</p>
<p><strong>EDIT</strong></p>
<p>The session state is InProc.</p>
http://stackoverflow.com/questions/1643793/are-linq-to-sql-objects-serializable-for-session-state2Are Linq to sql objects serializable for session state?Neil2009-10-29T13:37:19Z2009-10-30T16:31:11Z
<p>Without going into whether this is a good or bad idea:</p>
<p><strong>Is it possible to store a LINQ-to-SQL domain object in the ASP.NET Session, when the session is <em>out-of-process</em>?</strong></p>
<p>[EDIT]
I'm currently getting the following error and asked this question because I suspect the LINQ-to-SQL objects:</p>
<p>Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.
[/EDIT]</p>
<p>e.g.</p>
<pre><code>Session["Zoo"] = new Zoo() {
new Lion(),
new Tiger(),
new Elephant()
}
</code></pre>
<p>where:</p>
<ul>
<li>Zoo, Lion, Tiger, Elephant all come out of a ZooDataContext</li>
</ul>
<p>and the web.config file contains</p>
<pre><code><sessionState
mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424"
stateNetworkTimeout="10"
sqlConnectionString="SqlStateConnectionString"
sqlCommandTimeout="30"
timeout="20"
regenerateExpiredSessionId="true"/>
</code></pre>