The tag has no wiki summary.

learn more… | top users | synonyms

50
votes
4answers
5k 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 ...
38
votes
4answers
20k views

In ASP.NET, when should I use Session.Clear() rather than Session.Abandon()?

Both Session.Clear() and Session.Abandon() get rid of session variables. As I understand it, Abandon() ends the current session, and causes a new session to be created thus causing the End and Start ...
37
votes
4answers
16k views

Can I access session state from an HTTPModule?

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 () ...
24
votes
1answer
252 views

Replacing ASP.Net's session entirely

ASP.Net session appear perfect for a traditional WebForms app, but they do some things that are a serious problem for a modern AJAX and MVC application. Specifically there are only 3 ways to access ...
23
votes
4answers
27k 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 ...
20
votes
4answers
11k 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: ...
16
votes
13answers
3k 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 ...
13
votes
3answers
5k views

How does Microsoft Azure handle Session State?

Does anyone have any information on how state is managed in Azure when you choose to have multiple instances? It seems like InProc would be worthless and you would have to have another state server ...
12
votes
4answers
23k views

ASP.NET: How to clear out session on log out

I redirect the user to the login page when user click log out however I don't think it clears any application or session because all the data persisted when the user logs back in. Currently the login ...
11
votes
3answers
6k views

ASP.NET: How to access Session from handler?

i'm trying to store some values in the Session from a Handler page, before i do a redirect to a WebForms page, that will pick up the Session values and pre-fill the WebForm: public class Handler : ...
11
votes
3answers
4k 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 ...
11
votes
5answers
4k 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 ...
10
votes
2answers
1k views

Where should I attach a custom user-context Session wrapper in ASP.NET MVC3?

I have read many posts on Session-scoped data in MVC, but I am still unclear where is the right place to include a custom Session wrapper into the solution. I want to get the Username of the ...
10
votes
5answers
650 views

Continuous Deployment with an ASP.NET website?

I have a website in C#/ASP.NET that is currently in development. When we are in production, I would like to do releases frequently over the course of the day, as we fix bugs and add features (like ...
10
votes
5answers
2k views

Disable Session state per-request in ASP.Net MVC

I am creating an ActionResult in ASP.Net MVC to serve images. With Session state enabled, IIS will only handle one request at a time from the same user. (This is true not just in MVC.) Therefore, on ...
10
votes
8answers
4k 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 ...
9
votes
1answer
351 views

Adding value to list stored in session and then using as datasource for repeater

I have two repeaters on my page. The first repeater has a LinkButton in it, with a commandname and commandarguement. When the linkbutton is clicked the value of commandarguement is supposed to be ...
8
votes
5answers
8k views

Enabling Session State in SharePoint 2010?

I have a web service built for SharePoint 2007 that I am trying to port to SharePoint 2010. This web service is dependent on session state to function properly, but so far, I have been enable to get ...
8
votes
1answer
4k views

ASP.NET MVC Session State

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 file and ...
7
votes
4answers
211 views

Why does ASP.NET access the State Server even when the page's EnableSessionState=“False”, but only for a VB.NET site, not a C# site?

Our website uses our own custom-built session state management separate from ASP.NET Session State. But because a handful of special pages use SQL Server Reporting Services, we also need to enable ...
7
votes
2answers
186 views

How to Reach the Custom Errors page in ASP.NET when Session State Provider is Down?

I am trying to show a customer errors page in ASP.NET when the database is down. I use the SQL Server mode to hold the session data. The problem is that the custom errors page is never called. Since ...
7
votes
1answer
151 views

Has anyone created a PHP Session-like class in user code (not native)?

The native PHP Session functionality is great, but it's ultimately a singleton. There are times when you need to maintain state for multiple apps and in the scope of an already-started session (e.g. ...
7
votes
4answers
645 views

Using jQuery to store the state of a complicated form

I have a rather complicated form with many "steps" in it that are filled in by the user. Some steps (think of them as form segments) have default options, but on clicking a "enter custom values," they ...
7
votes
2answers
767 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; ...
7
votes
4answers
176 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
3answers
3k views

How to use ASP.NET Session State in an HttpHandler?

I have an HttpHandler that is run on a client page (cross domain, not on our IIS server, etc) and when they click on our embedded link it fires off the Handler on our server. So far everything is ...
7
votes
7answers
23k 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 ...
6
votes
1answer
211 views

Codeigniter sessions class w/ database storage option not optimized?

I use codeigniter's session class with the option to store session data in a database. This is an example of the select query that runs for every user request to retrieve a session: SELECT * FROM ...
6
votes
3answers
173 views

caching search results in session vs keeping large object heap clean

Ok so I've been working on an ASP.NET project for a while and it seems I've made some bad design choices that are coming back to haunt me as the project keeps on getting bigger and bigger in terms of ...
6
votes
2answers
760 views

PHP session HTTP to HTTPS problem

I have a (HTTPS) login.php page which remains HTTPS (ie once user logged in goes to account dashboard). Now the problem is say the user whilst logged on to the secure dashboard clicks onto a ...
6
votes
2answers
439 views

ASP.Net Custom Session State Management

Is it possible to build a fully customized Session State Mode instead of using Inproc or SQLServer?
6
votes
1answer
405 views

ASP.NET “Sessions Timed Out” Counter (perfmon.exe)

I'm currently load testing an ASP.NET application. I'm charging with 500 users on the app, and while it's running I'm checking, in a perfmon.exe console, the "Sessions Actives" and "Sessions Timed ...
6
votes
2answers
11k views

Android — How to properly handle onPause/onResume methods?

I have an app that starts playing sounds and begins/resumes gameplay in the onResume() method, but what I'm noticing is that if my app was the last run application when I put the phone into standby ...
6
votes
5answers
5k views

List all active ASP.NET Sessions

How can I list (and iterate through) all current ASP.NET sessions?
6
votes
4answers
13k views

ASP.NET MVC Session vs Global vs Cache

I have an application that was written in vanilla ASP.NET that I would like to port over to ASP.NET MVC. I, however, am confused about the right place to persist objects. I need to persist for a ...
6
votes
6answers
648 views

is it a good idea to create an enum for the key names of session values?

instead of doing session("myvar1") = something session("myvar2") = something session("myvar3") = something session("myvar4") = something is doing enum sessionVar myvar1 myvar2 myvar3 ...
6
votes
4answers
5k views

ASP.NET and Sessions - New Browser Instance versus New Browser Window

I'm hoping someone can clarify this behavior for me, and explain how ASP.NET is deciding when to treat something like a new Session. A) In Internet Explorer I load the ASP.NET site in question. It ...
5
votes
2answers
294 views

Organizing Session Vars in Scala/Lift

Would like to get some thoughts on how to best organize session vars within a scala / lift application. I've read over a number of scala materials online and have found generally the following ...
5
votes
2answers
231 views

What are the benefits of a stateless web application?

It seems some web architects aim to have a stateless web application. Does that mean basically not storing user sessions? Or is there more to it? If it is just the user session storing, what is the ...
5
votes
3answers
314 views

What are the different approaches for Java EE session replication?

I am working on a project that requires really high availability and my team is currently working on upgrading some infra-structure and software for a future release. One of the features we would ...
5
votes
1answer
267 views

Lift tracking a logged in user

I have a sitemap defined like this in Boot.scala def sitemap() = SiteMap( Menu(S ? "Home") / "index", Menu(S ? "Login") / "login", Menu(S ? "Do Logged in Stuff") / ...
5
votes
3answers
378 views

Configure ASP.NET Session State at runtime

We have an ASP.NET web site that uses SQL Server session state. The state is configured in Web.config like: <sessionState mode="SQLServer" sqlConnectionString="data source=TheServer; User ...
5
votes
6answers
1k views

ASP.NET session id shared amongst browser tabs

I've recently been developing a website using asp.net webforms that uses in proc sessions and I noticed that session ids are shared amongst browser tabs. So I was wondering what you would do for the ...
5
votes
2answers
2k views

Session.Clear() vs. Session.RemoveAll()

Is there a difference between Session.Clear() and Session.RemoveAll()? The descriptions and documentation pages seem to say exactly the same thing, but I am assuming there must be some reason for ...
5
votes
2answers
291 views

Anyone can explain the meaning of session states in SQL Server, such as sleeping, suspended, running etc

I'm confused about the session states of SQL Server sessions. Anyone can explain it please? Thanks.
5
votes
6answers
326 views

ASP.NET Session Performance

I'm experiencing performance issues on my asp.net application. Sometimes it would take the client 30-40 seconds to execute a command, where as in sometimes it would take 3-4 seconds. I tried SQL ...
5
votes
2answers
382 views

Problems with ASP.NET Session State / NInject / OnePerRequest behavior

This is quite a lengthy post, so bear with me. I'm not sure whether it is primarily about ASP.NET Session State behaviour, NInject, application design, or refactoring. Read on and then you can ...
5
votes
5answers
787 views

A non-locking in-process ASP.NET session state store

I'm using ASP.NET's in-process session state store. It locks access to a session exclusively, and which means concurrent requests to the same session are served sequentially. I want to remove this ...
5
votes
1answer
1k views

Can AppFabric be the session state provider and use local cache?

I am using AppFabric as the session state provider in my ASP.Net MVC2 app, and I would like it to also use the local cache. I have the following entry in my web.config right after the configSections ...
5
votes
3answers
479 views

Session Objects not Updating ASP.NET

I set a session object at one juncture in my code: Session("my_name") = "Dave" Later in my code I give the user a chance to update this object: Session("my_name") = TextBox1.Text I reload my ...

1 2 3 4 5 14