2013年8月5日
摘要: /// /// 添加Cookies操作 /// 名称 /// 值 /// public static void AddCookie(string cookieName, string value) { if ("" == cookieName.Trim() || string.Empty == cookieName || null == cookieName) { return; } if... 阅读全文
posted @ 2013-08-05 21:43 奋斗的笨小孩 阅读(168) 评论(0) 推荐(0)
摘要: private static string[] StrBadWord() { string[] Bad = new string[] { "'", "\"", ";", "--", ",", "!", "~", "@", "$", "%", "^", "/", " ", "_", "> 阅读全文
posted @ 2013-08-05 21:37 奋斗的笨小孩 阅读(1087) 评论(0) 推荐(0)
摘要: if exists(select 1 from sportLog)beginprint 1endelsebeginprint 2end1.当表中存在数据时结果为12.档表中不存在数据时结果为2 阅读全文
posted @ 2013-08-05 21:21 奋斗的笨小孩 阅读(218) 评论(0) 推荐(0)