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