0
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
。投射錯誤緩存對象
它運行在調試器,看看有什麼在緩存中。 –
這是與新聞 –
相同類型的緩存對象中的新消息對象是其中一行的異常嗎? –