会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ouc05
博客园
首页
新随笔
联系
管理
订阅
2017年11月12日
git and github
摘要: 一 . github上创建立一个项目 用户登录后系统,在github首页,点击页面右下角“New Repository” 填写项目信息: project name: hibernate-demo description : my first project 点击“Create Repository”
阅读全文
posted @ 2017-11-12 21:56 ouc05
阅读(149)
评论(0)
推荐(0)
2017年11月6日
cookies
摘要: C# : 方法1: Response.Cookies["username"].Value="gjy"; Response.Cookies["username"].Expires=DateTime.Now.AddDays(1); 方法2: System.Web.HttpCookie newcookie
阅读全文
posted @ 2017-11-06 22:14 ouc05
阅读(180)
评论(0)
推荐(0)
2017年11月2日
正则表达式
摘要: 例:Regex number = new Regex("[0-9]"); number→名字 ("[0-9]")→范围
阅读全文
posted @ 2017-11-02 22:08 ouc05
阅读(95)
评论(0)
推荐(0)
2017年10月30日
清除全部session和单个session
摘要: Session.Abandon();//清除全部Session//清除某个SessionSession["UserName"] = null;Session.Remove("UserName");
阅读全文
posted @ 2017-10-30 19:10 ouc05
阅读(1165)
评论(0)
推荐(0)
2017年10月22日
随机数生成
摘要: 转载: 法一: public static string Str(int Length) { char[] Pattern = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E'
阅读全文
posted @ 2017-10-22 15:54 ouc05
阅读(139)
评论(0)
推荐(0)
公告