Any good way to keep the state of an ASP.NET application through reboots?
I want to be able to set some values ββby restarting the application, and they are still there. I want to do this first of all for small drop-out test web applications that don't even need a database.
Is there a way to do this with static elements and serialization? web cache?
UPDATE :
An application should be able to update these values.
Values ββcan be custom objects, such as:
public class Person { public string FirstName { get; set; } public string LastName { get; set; } }
source share