Showing related tags and posts accross the entire site.
-
Here's some code to set a cache variable in the global.asax. http://www.developer.com/net/net/article.php/1477771 static Cache _cache = null; protected void Application_Start(object sender, EventArgs e) { _cache = Context.Cache; _cache.Insert("UserCount", BusinessObjects.ActiveUserCounter...