0
votes
2answers
40 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 …
3
votes
3answers
90 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 …
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 …
2
votes
4answers
44 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
1answer
15 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
5answers
48 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..
…
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;
…
0
votes
2answers
26 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 …
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 …
4
votes
6answers
120 views
Using cookies to store session in ASP MVC
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?
By default, anything in Session / TempData …
0
votes
2answers
92 views
How to set session timeout more than 20 min.?
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 …
0
votes
1answer
24 views
ASP.NET page change causes an object array in Session to be unable to cast to it’s own type??
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 …
0
votes
2answers
41 views
Keeping State in Non-model Controls - MVC
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 …
7
votes
4answers
107 views
Do we still need to worry about users turning off cookies?
I've noticed that a lot of sites don't bother anymore with work-arounds so users who have turned their cookies off can still get the same experience on the site. Has that problem just gone away in …
2
votes
4answers
126 views
Are Linq to sql objects serializable for session state?
Without going into whether this is a good or bad idea:
Is it possible to store a LINQ-to-SQL domain object in the ASP.NET Session, when the session is out-of-process?
[EDIT]
I'm currently getting …
