“Кэш Trong Mvc” Ответ

Кэш Trong Mvc

DataSet ds = System.Web.HttpContext.Current.Cache["CacheName"] as DataSet;
if (ds == null)
{
ds = CategoryDB.GetLastestNews(CategoryID, NoOfNews, LanguageCode);
System.Web.HttpContext.Current.Cache.Insert("CacheName", ds, null, DateTime.MaxValue, TimeSpan.FromMinutes(15));
}
Bad Butterfly

Кэш Trong Mvc

System.Web.HttpContext.Current.Cache.Insert("CacheName", bien, null, DateTime.MaxValue, TimeSpan.FromMinutes(15));
Bad Butterfly

Ответы похожие на “Кэш Trong Mvc”

Вопросы похожие на “Кэш Trong Mvc”

Смотреть популярные ответы по языку

Смотреть другие языки программирования