Tagged Questions
The application-state tag has no wiki summary.
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 ...
5
votes
3answers
2k views
How best to generate a random salt for a Web Site?
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 purchase ...
4
votes
3answers
201 views
Silverlight and Application State
I have a Silverlight app that always needs to know what Customer (domain object) is currently loaded. There can only be one loaded at a time. If the Customer is null, no Customer is loaded currently. ...
3
votes
1answer
149 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
4answers
3k views
Does asp.net MVC have Application variables?
I am busy converting a web application to MVC and have some information saved to Application variables used across multiple tenants/accounts to make things a bit more efficient.
I realise the point ...
2
votes
1answer
126 views
is it possible to get back to my application after clicking google maps?
the title says it all.
We have made an application for a city in the netherlands that wants tourists to visit their lovely museums.
when they reach the page fo a museum we have a little icon that ...
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 ...
2
votes
2answers
1k 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 ...
1
vote
3answers
384 views
windows phone 7 keep application running on back button
I'm implementing an application that should not stop running on clicking any button on the device. Is this possible and how can I achieve this?
Regards
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
50 views
Refreshing iOS application or checking for connection in advance
I'm having some issues determining what the proper application design pattern is for initially alerting users that they need to enable an internet connection.
I have an iOS app that requires an ...
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
65 views
Is there a way to get a current state of the application?
I have an application that periodically checks the server for some flag.
And then displays a message depending on the value of this flag.
I don't want to display a message then the application is not ...
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
159 views
Receiveing push notifications while in different states
I know this topic has been discussed however i keep seeing conflicting stements and im just getting more and more lost.
I just want to know what happens when my app is in the background and it ...
0
votes
1answer
226 views
How to save app state(custom object, Vector, Object) on runtime?
I am a new developer for Android and searching about how to save custom object as persistent data.
How can I save an object and restore it ?
I've researched several methods such as ...
0
votes
1answer
94 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
440 views
where is session state, application state in page life cycle?
where is session state, application state in page life cycle?
0
votes
2answers
85 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
112 views
Should I store localization content in the application state
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 will ...
0
votes
2answers
493 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 ...