08 2013 档案

摘要:static class Program { enum Orientation { [DescriptionAttribute("东")] East, [DescriptionAttribute("南")] South, [DescriptionAttribute("西")] West, [DescriptionAttribute("北")] North } ... 阅读全文
posted @ 2013-08-17 17:10 Thinking.N 阅读(342) 评论(0) 推荐(0) 编辑
摘要:declare @pagenum int = 1;declare @pagesize int = 3;WITH Tmp AS ( SELECT ROW_NUMBER() OVER (ORDER BY uid ASC) AS colnum, uid, uname FROM dbo.users o1)SELECT uid,uname FROM TmpWHERE colnum>(@pagenum-1)*@pagesize AND colnum<=@pagenum*@pagesize; 阅读全文
posted @ 2013-08-14 16:46 Thinking.N 阅读(336) 评论(0) 推荐(0) 编辑
摘要:创建一个Js类:var Request = { QueryString: function (item) { var svalue = location.search.match(new RegExp("[\?\&]" + item + "=([^\&]*)(\&?)", "i")); return svalue ? svalue[1] : svalue; } }引用方法:isaudit = Request.QueryString("isaudit"); 阅读全文
posted @ 2013-08-10 10:50 Thinking.N 阅读(1124) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示