Tagged Questions

14
votes
1answer
3k views

ASP.NET Application state vs a Static object

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, both ...
3
votes
1answer
147 views

global.asax scope and lifetime clarification

I need to implement several application-level behavior in a project I'm currently working on. There are several things I need to get my head around: 1. Where and how do I define application level ...
2
votes
3answers
287 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 ...
1
vote
2answers
506 views

How to add a System.Xml.XmlDocument type to applications state

I am using Asp.net 3.5 and C# I have to add an XmlDocument to my application state so that everytime my application doesnt access the XML file on my filesystem, I will add this at the ...
1
vote
2answers
366 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
3answers
51 views

Application variable across load balanced servers (ASP.Net)

We have a website that runs on two load balanced servers. We used the ASP.Net Application variable to make application state "online/ offline", or for some important messages across the application, ...
0
votes
3answers
47 views

Storing classes in Application State (ASP.NET)

Let's say I wish to store an instance of the following in Application State, to be accessed very often. public class Example { public string A; public string B; public bool C; public int D; ...
0
votes
1answer
171 views

Application variables get lost after post-back

My ASP.Net application has a Server Control developed by us which needs to store some keys in the Application level (i.e. across users and sessions) for future use. However, I found that the count ...
0
votes
1answer
92 views

Events through application scope to multiple clients?

First of all, I am creating a something like a client/server solution using a standard ASP.NET website - I do know this method is not adviced, and most people would love to scream "COMET!" or "HTML5 ...
0
votes
2answers
437 views

where is session state, application state in page life cycle?

where is session state, application state in page life cycle?
0
votes
2answers
84 views

A question regarding application state

I have a question regarding the application state in asp.net. As i know, data stored in application state is not permanent, data lost when the application is restarted/stopped. So, what does the ...
0
votes
2answers
492 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 ...
0
votes
3answers
1k 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 ...