//[OutputCache(Duration=3600)]
 public ActionResult ShowForecast()
 {
     XMLMethods xml = new XMLMethods();
     Dictionary<string, string> forecast = xml.GetForecastYahoo();
     return PartialView("_Forecast", forecast);
 }