I needed to change the title tag on the fly. The idea being that when the user clicks onto a date on the calendar control for example to pull all the posts relevant for that date, the page title above the address bar in the browser would reflect this and would help in search engine optimization. Search engines rank pages with relevant titles higher than those without relevant titles. By giving this information you are helping the search engine understand your Web page through your page title. Search engines will quickly overlook a Web page with an unrelated page title. The solution for ASP.NET 2.0 is to use Page.Title under the Page_Load event in the code behind.
Page.Title = "post " + Request.QueryString("EventDate")http://www.velocityreviews.com/forums