摘要: SELECT SQL_NO_CACHE SQL_CALC_FOUND_ROWS * FROM asp_mst LIMIT 10,20;//查询表中20条数据,从第11行开始SELECT FOUND_ROWS();//返回查询表的总行数例:JS部分:var PageCount = 0;//页数var ... 阅读全文
posted @ 2015-04-03 13:33 岳帅超 阅读(198) 评论(0) 推荐(0) 编辑
摘要: //get base URL var _urlstr = window.location.href; if (_urlstr.indexOf("?") > -1) { _urlstr = _urlstr.substring(0, _urlstr.lastIndexOf("?")); } _urlst... 阅读全文
posted @ 2015-03-31 14:28 岳帅超 阅读(2426) 评论(0) 推荐(0) 编辑
摘要: 程序员必读书单入门书籍程序设计:基础理论:编码:隐匿在计算机软硬件背后的语言编程语言:C:C和指针C++:C++程序设计原理与实践Java:Java核心技术(第9版)C#:精通C#(第6版)JavaScript:JavaScript DOM编程艺术(第2版)Python:Python基础教程(第二版... 阅读全文
posted @ 2015-03-05 11:10 岳帅超 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1 public class Tree where T : IComparable 2 { 3 /// 4 /// 定义树 5 /// 6 private T data; 7 private ... 阅读全文
posted @ 2015-02-02 16:50 岳帅超 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 为了学习游戏,决定重学算法,下面是借用的算法目录,来告诉自己要学习的内容,务必完成。算法 3 树 4 遍历二叉树 5 线索二叉树 6 霍夫曼树 7 图 8 深度优先搜索 9 广度优先搜索10 ... 阅读全文
posted @ 2015-02-02 16:43 岳帅超 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 废话不说,直接开始。创建Excel工作表private static ExcelWorksheet CreateSheet(ExcelPackage p, string sheetName){ p.Workbook.Worksheets.Add(sheetName); ExcelWorksheet ... 阅读全文
posted @ 2015-01-30 14:51 岳帅超 阅读(4898) 评论(0) 推荐(0) 编辑
摘要: 该方法基于JQuery,然后给方法传递URL中的参数名,返回参数值(function($){ $.getUrlParam = function(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.lo... 阅读全文
posted @ 2015-01-28 14:22 岳帅超 阅读(1740) 评论(0) 推荐(1) 编辑
摘要: //拷贝sheet.Cells["6:12"].Copy(sheet.Cells["1:2"]);//边框无sheet.Cells[(i * 6 + i + j), 2].Style.Border.Right.Style = ExcelBorderStyle.None;//设边框颜色sheet.Ce... 阅读全文
posted @ 2014-11-11 17:01 岳帅超 阅读(1639) 评论(0) 推荐(0) 编辑
摘要: 本文的数据库用的是sql server连接字符串string conn = ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;View Codeconfige文件 ... 阅读全文
posted @ 2014-08-12 10:37 岳帅超 阅读(526) 评论(0) 推荐(0) 编辑
摘要: -- 完整例子CREATE PROCEDURE testBEGIN-- 定义参数 DECLARE _id INT;-- 定义游标 DECLARE no_more_products INT DEFAULT 0; DECLARE RESULT_test CURSOR FORSELECT num1 fro... 阅读全文
posted @ 2014-08-11 14:00 岳帅超 阅读(348) 评论(0) 推荐(0) 编辑