一些工作中的笔记(持续更新)

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

 

以上是关于一些工作中的笔记(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章

导致活动不工作的片段中的按钮(更新)

小程序各种功能代码片段整理---持续更新

AI笔记优质文章分享(持续更新)

工作学习中的一些小的收获(持续更新)

django项目实际工作中的配置以及一些有用的小工具(持续更新)

一些个人笔记,持续更新ing