摘要: //在View中 //自己写的过滤器public class MyValidateAntiForgeryToKenAttribute:FileterAttribute,IAuthorizationFilter{ private void ValidateRequestHeader(HttpRe... 阅读全文
posted @ 2014-08-20 18:09 ZerekZhang 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 1.MySQL基础操作 一:MySQL基础操作 1:MySQL表复制 复制表结构 + 复制表数据 create table t3 like t1; --创建一个和t1一样的表,用like(表结构也一样) inse... 阅读全文
posted @ 2014-08-20 18:07 ZerekZhang 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 1、 查询Student表中的所有记录的Sname、Ssex和Class列。select sname,ssex,class from studentLinq: from s in Students select new { s.SNAME, s.SSEX, s.CLASS }Lambda: Stud 阅读全文
posted @ 2014-08-20 15:28 ZerekZhang 阅读(625) 评论(5) 推荐(0) 编辑