Example #1
0
        protected void OnSaveClick(object sender, EventArgs e)
        {
            string cacheKey           = string.Format("{0}_{1}_{2}", communityId, ContentId, txtLN.Value);
            string stringContent      = REd.Content;
            CSBooster_DataContext csb = new CSBooster_DataContext(Helper.GetSiemeConnectionString());

            csb.hisp_Content_SaveContent(communityId, ContentId, txtLN.Value, stringContent);
            try
            {
                Cache.Remove(cacheKey);
                Cache.Insert(cacheKey, stringContent);
            }
            catch
            {
            }
            ShowNormalMode();
        }