Showing related tags and posts across the entire site.
-
I was wondering if there was a clean way to programatically control the page title in ASP.Net. This is helpful with search engine optimizing techniques. I found a few examples across the web. I tried out a couple and to me, this solution seemed to be a very efficient way to handle the problem. In the...
-
I needed to determine what the real TimeZone (CST vs CDT) was for my blog application. So here is what I came up with: // instantiate a DateTime Object DateTime dT = DateTime.Now; // create a string to hold the full date and time string pubDate = dT.ToLongDateString() + " " + dT.ToShortTimeString...