0
votes
2answers
55 views
HttpApplicationState - Why does Race condition exist if it is thread safe ?
I just read an article that describes how HttpApplicationState has AcquireRead() / AcquireWrite() functions to manage concurrent access. It continues to explain, that in some conditions however we …
0
votes
2answers
49 views
Should I store localization content in the application state
Hi,
I am developing my first multilingual C# site and everything is going ok except for one crucial aspect. I'm not 100% sure what the best option is for storing strings (typically single words) that …
2
votes
2answers
102 views
Preserving ASP.NET Application State Across Restarts
Any good way to preserve ASP.NET Application state across restarts?
I want to be able to set some values restart the app and have them still be there.
I want to primarily do this for small …
0
votes
2answers
139 views
Recycling Options for ASP.Net Application State Object
What are the options for recycling the ASP.Net application state object? I'm using that object to store queues of database connections for a web serviced based data access layer. I'm concerned that …
2
votes
3answers
522 views
How best to generate a random salt for a Web Site?
Hi folks,
i'm wanting to generate a random salt value and put it into the Application state.
Now, i'm using a web farm, so the Application state will be different per machine. I don't want to …
1
vote
2answers
356 views
in IIS, what’s the difference between “application” and “session” ?
A Session is per browser (determined via cookies), but when does an "Application" start, and end, and how does IIS know know when a request is a part of the same same "Application" instance (if not …
8
votes
1answer
825 views
ASP.NET Application state vs a Static object
Hi folks,
if i have a standard ASP.NET application, is there any difference between making an object static as opposed to putting the object instance in the Application state?
from my understanding, …
0
votes
3answers
592 views
Accessing HttpApplicationState during Session_End
In my ASP.NET application using InProc sessions, Session_End calls a static method in another object to do session-specific clean up. This clean up uses a shared database connection that I am storing …
