Bored with the colours and styles of VS IDE, here is a cool way to jazz up the Visual Studio 2010
Find some of the cool styles at http://studiostyl.es/
Even more you can create your own theme. Give it a shot.
Happy coding!!
Vinod
Friday, October 15, 2010
Thursday, March 4, 2010
HttpContext.Current.Cache Vs HttpRuntime.Cache
We normally use the HttpContext.Current.Cache for caching data but internally HttpContext uses HttpRuntime.Cache to do the actual caching. The advantage of using HttpRuntime directly is that it is always available, for example, in Console applications and in Unit tests.
Using HttpRuntime.Cache is simple. Objects can be stored in the cache and are indexed by a string. Along with a key and the object to cache the other important parameter is the expiry time. This parameter sets the time before the object is dropped from the cache.
Happy Coding J
Subscribe to:
Posts (Atom)