上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 无标题文档 阅读全文
posted @ 2016-05-06 11:34 hllive 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 1、visual studio 2013设置字体:工具--选项--环境--字体和颜色--字体选择:consolas;如下图: 2、设置Visual Studio 2013选项卡右侧显示,选择菜单“工具”——“扩展和更新(U)”——“联机” 搜索输入框中输入“Productivity Power”;点 阅读全文
posted @ 2016-04-05 22:56 hllive 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 设置或获取对象指定的文件名或路径。window.location.pathname例:http://localhost:8086/topic/index?topicId=361alert(window.location.pathname); 则输出:/topic/index设置或获取整个 URL 为 阅读全文
posted @ 2016-02-18 23:17 hllive 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 让div居中显示.div_center { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; margin-top: -250px; /*注意这里必须是DIV高度的一半*/ ... 阅读全文
posted @ 2016-01-26 00:04 hllive 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 首次创建$(document).ready(function () { }); 阅读全文
posted @ 2016-01-16 00:14 hllive 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 允许传递一个类A的方法m给另一个类B的对象,使得类B的对象能够调用这个方法m,说白了就是可以把方法当作参数传递。class Program { //delegate的使用方法一 public delegate void users(string name ,int ... 阅读全文
posted @ 2016-01-10 11:22 hllive 阅读(209) 评论(0) 推荐(0) 编辑
摘要: ViewBag是一个dynamic(动态类型)类型集合,可以动态添加任何类型的任意名称的属性和值,ViewBag是Controller和view之间传递数据的,如以下:ViewBag.HtmlStr = "hello"在cshtml视图文件里获得ViewBag.HtmlStr字符。默认Razor视图... 阅读全文
posted @ 2016-01-01 15:55 hllive 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 浮动1、pull-left:左浮动;pull-right:右浮动;清除浮动:clearfix 阅读全文
posted @ 2015-11-24 17:17 hllive 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 创建ListView步骤1、添加LayoutTemplate,添加div并设置ID2、在lListView中指定div的ID,通过ItemPlaceholderID=? ... 阅读全文
posted @ 2015-11-24 17:13 hllive 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 命名规范表表名如Order/UserAccout符合以下规范:1.统一采用单数形式,反对Orders2.首字母大写,多个单词的话,单词首字母大写,反对order/Useraccout/ORDER3.避免中文拼音,反对AgentBaoCi4.避免下划线连接,反对User_Accout(下划线适用Ora... 阅读全文
posted @ 2015-11-24 13:48 hllive 阅读(1796) 评论(0) 推荐(1) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页