0
votes
1answer
223 views
c# how to set up and use session state from preinit
OK so to set and read variables from the current session
String Myvar =(string) System.Web.HttpContext.Current.Session[“MyVariable”]
To set
System.Web.HttpContext.Current.Session[“MyVariable”] = …
0
votes
2answers
43 views
c# stateserver maintains session between machines
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.
I my session management is working perfectly except that if a …
1
vote
1answer
16 views
Session State with MVP and Application Controller patterns
Hi,
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 …
0
votes
2answers
49 views
Asp.net session state server with SQL Server
We're trying to get session state working using the following web.config line:
<sessionState
mode="SQLServer"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="Data …
0
votes
1answer
78 views
window.open() clears session
Hi,
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 …
0
votes
1answer
16 views
Structure Saved in a Session Variable
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
…
0
votes
1answer
26 views
Website Session Analysis
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 …
4
votes
3answers
95 views
Buiding ASP.NET application without Session State?
I just finished watching Stefan Schackow's PDC 2009 session and he mentioned that he is surprised that people are still using Session State in ASP.NET. Session State is even used internally in ASP.NET …
2
votes
4answers
49 views
Session mode in ASP.Net?
Which session mode in the following ,should i implement for my ASP.Net website?
1)InProc .
2)State Server.
3)SQL Server.
4)Custom.
0
votes
2answers
29 views
Session cookies across browser processes
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 …
1
vote
1answer
97 views
Classic ASP session and Web Garden (multiple workers)
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 …
0
votes
5answers
49 views
HTTP Session Tracking
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..
…
0
votes
1answer
21 views
IIS 6.0 Not loading SessionState for .NET 3.5 Application using HttpHandler
QA and Dev enviroments work perfectly.
Handlers all implement the IRequiresSessionState marker.
Config File contains:
<pages enableSessionState="true">
and
<sessionState …
0
votes
1answer
19 views
IHttpHanlder returns null session
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?
Do you need to initialize the …
1
vote
2answers
46 views
.NET HttpSessionState Case Insensitivity
.NET's HttpSessionState using an "InProc" store seems to treat session variable key values as case insensitive. For example:
session["foo"] = 1;
session["Foo"] = 2;
…
