Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
140 views

ASP.NET Application ending immediately after starting

Having a bit of a problem with my hosted ASP.NET applications. I noticed slowness when opening pages, the kind of slowness that you see the first time you start up an ASP.NET app. After researching, ...
1
vote
4answers
108 views

Access Application State from outside a Page

I'm trying to access the Application State from a utility class in the web application but I'm not sure of the best way to do it. I looked for a static member but there is none of use (I was thinking ...
1
vote
1answer
228 views

Saving contents of ApplicationState in ASP.Net (MVC)

I have an internal app used to edit XML files on disk. The XML files are loaded into an object model which is stored in ApplicationState. I need to save this data. The one option is to do this every ...
1
vote
3answers
379 views

How to access the Application[] collection from a WCF web service

I used to use .ASMX web services, but I'm trying to move to WCF because it's the latest newest thing, and it's supposed to be better. Anyway, what I'm wanting to do is really really simple : create a ...
0
votes
2answers
80 views

Store Dictionary objecty in ApplicationState Vs putting it in Web.config

I need to store a Dictionary in my asp .net application. This dictionary is basically a straight mapping of keys (strings) to values (strings). During the life of the Application the dictionary will ...
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
3answers
522 views

iPhone setting NSUserDefaults to nil when app is closed or in background

I want to eliminate all of the variables saved into all fields of NSUserDefaults whenever the app is closed or running in the background for a certain amount of time - say 5 minutes. I tried to add a ...