Tagged Questions

5
votes
6answers
2k views

Need to implement “expiration date” for beta software C#

I am developing software in C# for a Windows CE device and I have beta software soon to be released and I want it to die after a certain date so the final release will need to be downloaded. The ...
2
votes
3answers
135 views

C# Cache expiration not working

I am adding to the following value to the cache: HttpContext.Cache.Insert( "ClientId", clientid, null, DateTime.UtcNow.AddYears(1), TimeSpan.Zero ); I don't want the cache to expire so I ...
2
votes
3answers
186 views

HashTable with expirable items

I want to implement a HashTable (or mabybe a HashSet or Dictionary) which has unique members which expire after a while. For example: // Items expire automatically after 10 seconds (Expiration period ...
2
votes
1answer
317 views

ASP.net auction expiration mechanism [closed]

How to realize auction expiration? Make it inactive after 1-3-5 days? Something like eBay? Thank you! I am using asp.net c# Any links for information would be appreciated, I have "active" boolean ...