一些工作中的笔记(持续更新)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些工作中的笔记(持续更新)相关的知识,希望对你有一定的参考价值。
因为数据库正在使用,所以无法获得对数据库的独占访问权---还原或删除数据库的解决方法:
ALTER DATABASE [datebase] SET OFFLINE WITH ROLLBACK IMMEDIATE
ALTER database [ datebase] set online
objiect 转化为 model
mh_reguserInfoModel regUserInfo = (mh_reguserInfoModel)HttpContext.Current.Session["wcm_web_shangHaiMhRegLoginInfo"];
session转化
ReguserLoginBLL.userDic[regUserInfo.Id] = HttpContext.Current.Session.SessionID;
ReguserLoginBLL.sessionDic[HttpContext.Current.Session.SessionID] = regUserInfo.Id
IndexOf用法
int nPosEnd = sContent.IndexOf(sTemp)
sContent为<title>sdfg</title>
sTemp 为</title>
sContent.IndexOf(sTemp) 为<title>sdfg
nPosEnd 为11
*1.Indexof(*2)取得是*1里面除了*2的字符的个数
#region
///清空客户端页面缓存
/// 清空客户端页面缓存 ///
public static void ClearClientPageCache()
{
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.Expires = 0;
HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
HttpContext.Current.Response.AddHeader("pragma", "no-cache"); HttpContext.Current.Response.AddHeader("cache-control", "private");
HttpContext.Current.Response.CacheControl = "no-cache";
}
#endregion
以上是关于一些工作中的笔记(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章