上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页
摘要: 1 /*最流行的写法*/ 2 (function() { 3 alert("run!") 4 })(); 5 6 /* !号可以有1~正无穷个,所以这一种就可以衍生无数种方式 */ 7 !!!(function() { 8 alert("run!") 9 })();10 11... 阅读全文
posted @ 2014-11-21 19:34 mushishi 阅读(330) 评论(0) 推荐(1) 编辑
摘要: 原文地址:http://blog.csdn.net/mazhaojuan/article/details/7660657 开发web项目时需要安装IIS,在安装好IIS的Windows7本上发布asp.net网站时,web程序已经映射到了本地IIS上,但运行如下错误提示“处理程序“PageHandl... 阅读全文
posted @ 2014-11-21 14:01 mushishi 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1. 模糊查询 like的参数化写法 string keyword="value"; // 要模糊匹配的值 错误示范: sql: string strSql="select * from [Table] where [Field] like %@Field%"; 参数: System.Data.Sq 阅读全文
posted @ 2014-11-20 13:40 mushishi 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 步骤一:添加引用 -> 程序集 -> 扩展 ->System.Web.Mvc ;System.Web.Razor;System.Web.WebPages;System.Web.Abstractions;步骤二:mvc默认目录结构 新建一个空的mvc项目, 将Controllers和Views文件... 阅读全文
posted @ 2014-11-09 02:29 mushishi 阅读(3404) 评论(0) 推荐(0) 编辑
摘要: 学习bootstrap.js源码中被js里边的this绕的有点晕 1 /* ======================================================================== 2 * Bootstrap: alert.js v3.2.0 3 * ht... 阅读全文
posted @ 2014-10-15 16:45 mushishi 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 优化方法论:分析实例级的等待。联系等待和队列。确定方案。细化到数据/文件级。细化到进程级。优化索引/查询. 阅读全文
posted @ 2014-09-01 21:44 mushishi 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 问题1 修改命名空间后 .ashx 类型创建失败【情景】 在调整前后台项目结构的时候,修改了默认命名空间(XXX.Admin 修改成XXX.Web),结果调试的时候发现XXX.Admin.Ajax.Verify_code.ashx类型创建失败 ,明明修改了,找了半天也没有找到原因,后求助qq群 才知... 阅读全文
posted @ 2014-08-13 16:52 mushishi 阅读(202) 评论(0) 推荐(0) 编辑
摘要: public void getData() { // PackageManager 包管理类 PackageManager packageManager = BrownserActivity.this.getPackageManager(); int Pac... 阅读全文
posted @ 2014-07-31 11:46 mushishi 阅读(834) 评论(0) 推荐(0) 编辑
摘要: // 获取当前日期和时间 Calendar cal = Calendar.getInstance(); String fileName = cal.get(Calendar.YEAR) + "_" + cal.get(Calendar.MO... 阅读全文
posted @ 2014-07-29 19:27 mushishi 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: 原文链接:http://www.nowamagic.net/html/html_AboutInputSummit.php有时候我们希望回车键敲在文本框(input element)里来提交表单(form),但有时候又不希望如此。比如搜索行为,希望输入完关键词之后直接按回车键立即提交表单,而有些复杂表... 阅读全文
posted @ 2014-05-12 16:23 mushishi 阅读(473) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页