Tagged Questions

34
votes
5answers
2k views

How can I disable session state in ASP.NET MVC?

I would like to have a very lightweight ASP.NET MVC site which includes removing as many of the usual HttpModules as possible and disabling session state. However when I try to do this, I get the …
12
votes
3answers
3k views

Can I access session state from an HTTPModule?

Hi, I could really do with updating a user's session variables from within my HTTPModule, but from what I can see, it isn't possible. UPDATE: My code is currently running inside the OnBeginRequest …
12
votes
13answers
2k views

ASP.Net Session

I am wanting to store the "state" of some actions the user is performing in a series of different ASP.Net webforms. What are my choices for persisting state, and what are the pros/cons of each …
9
votes
8answers
1k views

ASP.NET Masters: What are the advantages / disadvantages of using Session variables?

I've done a search on this subject already, and have found the same data over and over-- a review of the three different types of sessions. (InProc, Sql, StateServer) However, my question is of a …
7
votes
4answers
111 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 …
7
votes
5answers
815 views

Allowing Session in a Web Farm? Is StateServer Good Enough?

First of all to give you a bit of background on the current environment. We have a number of ASP.NET applications, all of which use session for certain aspects. We are "Load Balanced" over multiple …
7
votes
1answer
2k views

ASP.NET MVC Session State

Hi Guys, I am currently trying to create an upload control with progress bar in MVC using jquery. I keep running into a problem however in that mvc doesn't work in parallel threads? When I upload a …
6
votes
3answers
4k views

Why would ASP.NET MVC use session state?

Recommended by the ASP.NET team to use cache instead of session, we stopped using session from working with the WebForm model the last few years. So we normally have the session turned off in the …
5
votes
2answers
734 views

What’s causing “Session state has created a session id, but cannot save it because the response was already flushed by the application.”

I'm getting this fault intermittently. I found this link which summarises fairly well what I was able to find on the Google: …
4
votes
3answers
105 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 …
4
votes
6answers
139 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 …
4
votes
3answers
627 views

Asp.Net MVC and Session

I'd like to construct an object in different steps in an asp.net mvc application, each step being a different page. The sort of thing you'd store in Session in a quick Web.Forms application. Reading …
4
votes
4answers
677 views

Checking for workstation lock/unlock change with c#

DUPLICATE: How can I programmatically determine if my workstation is locked? How can I detect (during runtime) when a Windows user has locked their screen (Windows+L) and unlocked it again. I know I …
4
votes
6answers
4k views

“HttpContext.Current.Session” vs Global.asax “this.Session”

Recently, while working on some code for an ASP.NET project at work. We needed a tracking util to take basic metrics on user activity (page hit count etc) we would track them in Session, then save the …
4
votes
2answers
194 views

How Do I Track and Eliminate Session Abuse?

I'm pretty sure that there have been developers in the past that have severely abused our poor friend ASP.NET session state. Session would love to help track things between requests, but can only do …

1 2 3 4 5 11 next
15 30 50 per page