上一页 1 ··· 3 4 5 6 7
摘要: 1. HTML <!-- 这是一段注释。注释不会在浏览器中显示。--> 2. JavaScript 单行: //document.getElementById("myH1").innerHTML="Welcome to my Homepage"; document.getElementById("m 阅读全文
posted @ 2014-03-20 16:19 Jacky Ge 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1. MSOWebPartPageFormName 获取当前form的名称,然后可用document.forms[MSOWebPartPageFormName]来得到当前form; 2. _spPageContextInfo ,此变量时object对象,可以使用JSON.stringify() 来展 阅读全文
posted @ 2014-03-20 11:15 Jacky Ge 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 1. 隐藏Quick Launch <style type="text/css">/*-- Hide Quick Launch --*/#s4-leftpanel{ display:none;}/*-- Move the content placeholder to the left border 阅读全文
posted @ 2014-03-20 10:14 Jacky Ge 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 另一篇博客,记录jQuery的操作:jQuery Tips;   2. appendChild(newChild),例:oParentNode.appendChild(newElement); 4. 检测jquery是否加载 window.onload = function() { if (wind 阅读全文
posted @ 2014-03-19 13:20 Jacky Ge 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 1. SqlCommand.ExecuteScalar Method Executes the query, and returns the first column of the first row in the result set returned by the query. Addition 阅读全文
posted @ 2013-08-20 17:59 Jacky Ge 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 1. _ViewStart.cshtml会在调用每个页面的时候执行,我们可以在页面内设置Layout页面,也可以在这个页面写一些逻辑来根据不同的情况引用不同的Layout页面,详情请参考此处; 阅读全文
posted @ 2013-08-01 22:58 Jacky Ge 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1. 字符串类型要用单引号来表示,不要使用双引号; 2. Select子查询出来的数据集需要有一个名称,其实就是临时表的名称(例如:select * from (select * from ...) tempTable 等情况)。 3. Union all允许重复的结果集,Union会自动去重。Un 阅读全文
posted @ 2013-07-26 10:37 Jacky Ge 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 另一篇文章 JavaScript Tips 1. 获取span标签的值需要用text(); 2. datepicker控件的‘setDate’属性可用于设置默认值; 3. 使用parseFloat转换时,如果字符串超出float的限制(无限的),将会返回Infinite或者-Infinite,此时可 阅读全文
posted @ 2013-07-15 19:03 Jacky Ge 阅读(498) 评论(0) 推荐(1) 编辑
摘要: Model-view-controller has three layers: the model, the view, and the controller. The model can be considered the data used in the program, the control 阅读全文
posted @ 2013-05-09 22:11 Jacky Ge 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1. ASP.NET路径中的“~”表示虚拟路径的根目录 2. 字符串太长时可用反斜杠来进行换行; 3.  4. SharePoint REST API 设置List 权限; 5. Calendar Solution (SharePoint 2010版):隐藏Recurrence,会议室冲突检测,限制 阅读全文
posted @ 2010-02-21 15:36 Jacky Ge 阅读(340) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7