if (System.Web.HttpContext.Current.Cache.Get("dsActiveNews_FixID_" + newsFixID) == null)
news = NewsDB.getNewsBodyByFixID(newsFixID);
System.Web.HttpContext.Current.Cache.Add("dsActiveNews_FixID_" + newsFixID, news, null, DateTime.Now.AddMinutes(60), Cache.NoSlidingExpiration, CacheItemPriority.Normal, null);
}
news = (News)(System.Web.HttpContext.Current.Cache.Get("dsActiveNews_FixID_" + newsFixID));
当我第一次调用页面时,铸造正在工作,当我刷新页面时,我得到一个异常InvalidCastException: Specified cast is not valid
。