上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 47 下一页

分页 - 连接查询分页

摘要: select top (10) a.id,a.tool_Name,a.tool_Describe from ( select ROW_NUMBER() over(order by u.id) as rownum, t.id,t.tool_Name,t.tool_Describe from Tb... 阅读全文
posted @ 2016-01-05 11:52 ultrastrong 阅读(425) 评论(0) 推荐(0)

WinForm - 两个窗体之间的方法调用

摘要: 方法1: 所有权法//Form1://需要有一个公共的刷新方法public void Refresh_Method(){ //...}//在调用Form2时,要把Form2的所有者设为Form1Form2 f2 = new Form2() ;f2.Owner = this;f2.ShowDialo... 阅读全文
posted @ 2016-01-05 11:05 ultrastrong 阅读(948) 评论(0) 推荐(0)

PHP - 四级单词lrc文件解析为txt

摘要: 原始文件:转换后文件:php代码:首先根据需要更改文件路径。转换后存放的文件要事先创建,为txt文件。核心代码:正则表达式替换: 阅读全文
posted @ 2016-01-03 00:45 ultrastrong 阅读(408) 评论(0) 推荐(0)

PHP - 分页

摘要: 效果1:使用代码(page.class.php-分页代码,index.php-页面显示代码,page.css-css样式)page.class.php:total = $_total ? $_total : 1; $this->pagesize = $_pagesize; ... 阅读全文
posted @ 2016-01-02 00:28 ultrastrong 阅读(261) 评论(0) 推荐(0)

PHP - Cookie 应用

摘要: 效果:代码: 登录页面 "> 账号: "> ... 阅读全文
posted @ 2016-01-01 17:06 ultrastrong 阅读(200) 评论(0) 推荐(0)

PHP - Cookie

摘要: 所使用代码:cookie.phpdelcookie.php使用实例:第一次运行cookie.php页面:刷新cookie.php页面:删除页面delcookie.php页面: 阅读全文
posted @ 2015-12-31 11:33 ultrastrong 阅读(194) 评论(0) 推荐(0)

PHP - SVN(subversion)

摘要: http://www.cnblogs.com/armyfai/p/3985660.html http://www.cnblogs.com/KTblog/p/5153917.html 阅读全文
posted @ 2015-12-28 21:47 ultrastrong 阅读(196) 评论(0) 推荐(0)

PHP - 魔术方法

摘要: name = $name; } /** * 析构函数 */ public function __destruct() { echo '使用析构方法,... 阅读全文
posted @ 2015-12-25 17:43 ultrastrong 阅读(232) 评论(0) 推荐(0)

PHP - 发送短信

摘要: 1、购买服务 我购买的是在百度进行推广的API服务。按照要求进行购买就好,之后获取自己的apikey。2、将提供的代码修改后集成到项目中:sendphonemsg($_POST['phoneNumber'], $validNum);?> 阅读全文
posted @ 2015-12-24 22:02 ultrastrong 阅读(378) 评论(0) 推荐(0)

网站页面引导操作 - intro.js

摘要: http://www.cnblogs.com/kgdxpr/archive/2013/08/02/3231920.html 阅读全文
posted @ 2015-12-24 20:55 ultrastrong 阅读(688) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 47 下一页