上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 转自:http://www.cnblogs.com/accumulater/p/6223909.html 阅读全文
posted @ 2018-01-11 16:46 波霸38 阅读(303) 评论(0) 推荐(0) 编辑
摘要: A、B两表,找出ID字段中,存在A表,但是不存在B表的数据。A表总共13w数据,去重后大约3W条数据,B表有2W条数据,且B表的ID字段有索引。 方法一 使用 not in ,容易理解,效率低 ~执行时间为:1.395秒~ 方法二 使用 left join...on... , "B.ID isnul 阅读全文
posted @ 2017-10-20 16:49 波霸38 阅读(3996) 评论(0) 推荐(0) 编辑
摘要: 关闭 阅读全文
posted @ 2017-09-29 14:28 波霸38 阅读(5082) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <title>jwplayer播放器测试</title> <script type="text/javascript" src="scripts/jquery-1.8.3.min.js"></script> <script type="text 阅读全文
posted @ 2017-09-14 15:10 波霸38 阅读(642) 评论(0) 推荐(0) 编辑
摘要: JS/CSS文件的打包合并(Bundling)及压缩(Minification)是指将多个JS或CSS文件打包合并成一个文件,并在网站发布之后进行压缩,从而减少HTTP请求次数,提高网络加载速度和页面解析速度。压缩功能实现了对javascript脚本和CSS进行压缩的功能,它能够去除脚本或样式中不必 阅读全文
posted @ 2017-07-16 20:12 波霸38 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC中进行分页的方式有多种,在NuGet上有提供使用PagedList、PagedList.Mvc进行分页。 在安装引用PagedList.Mvc的同时会安装引用PagedList。 搜索触发事件: 后台方法: 分页控件样式: .pagination { display: inli 阅读全文
posted @ 2017-07-16 19:51 波霸38 阅读(364) 评论(1) 推荐(0) 编辑
摘要: protected void Application_Start() { Application["OnLineUserCount"] = 0; AreaRegistration.RegisterAllAreas(); RegisterGlobalFilters(GlobalFilters.Filters); RegisterRoutes(RouteTable.Routes); } ... 阅读全文
posted @ 2017-07-16 19:10 波霸38 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 1、datagrid中JS函数传值问题: columns: { field: 'TypeName', title: '分类名称', width: 120, sortable: true, formatter: function (value, row, index) { var contentDet 阅读全文
posted @ 2017-06-16 15:42 波霸38 阅读(867) 评论(6) 推荐(0) 编辑
摘要: protected void LinkButton1_Click(object sender, EventArgs e) { string strsql = " 1=1 "; int type = Convert.ToInt32(droptype.SelectedValue); string zyz 阅读全文
posted @ 2017-06-16 13:40 波霸38 阅读(174) 评论(0) 推荐(0) 编辑
摘要: private string GetPerUserGroup( string groupid, string usergroupname) { string str = usergroupname; if (Convert.ToInt32(groupid) > 0) { Community.Mode 阅读全文
posted @ 2017-06-16 13:28 波霸38 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页