paul_cheung

导航

2014年2月14日 #

sql 分页

摘要: 最简单的分页(没考虑效率) SELECT TOP 10 [Id],[ReflectionId],[CreatorUserId],[Type],[Text],[AttachmentsJson],[CreatedTime] FROM [LeadersCorporationDB].[dbo].[ReflectionLog] WHERE [ReflectionId]='2769D3CB-BB5C-47A1-9BF3-00C16614C4EB' AND Id NOT IN(SELECT TOP ((2-1)*10+1) Id FROM [LeadersCorporationDB].[db 阅读全文

posted @ 2014-02-14 11:23 paul_cheung 阅读(93) 评论(0) 推荐(0) 编辑

OData + jqgrid 部署在IIS 8.0上可增加但不能删除修改问题

摘要: 解决方法:里添加 和 原因:iis默认开启了webDAV module和handler,关闭这两个就Ok了! 阅读全文

posted @ 2014-02-14 11:23 paul_cheung 阅读(212) 评论(0) 推荐(0) 编辑

2014年1月17日 #

linq.sort

摘要: reflections.Sort(delegate(ReflectionEntity a, ReflectionEntity b) { if (a.CreatedTime < b.CreatedTime) { return 1; } else if (a.CreatedTime == b.CreatedTime) ... 阅读全文

posted @ 2014-01-17 15:06 paul_cheung 阅读(143) 评论(0) 推荐(0) 编辑

2013年12月19日 #

sql server restore DB issue

摘要: error occurs when restoring the backup file of sql server(DB.bak)to run the above t-sql will shoot this issue! nothing else to do!原文内容引用:http://www.cnblogs.com/adandelion/archive/2006/09/30/519534.html 阅读全文

posted @ 2013-12-19 23:22 paul_cheung 阅读(148) 评论(0) 推荐(0) 编辑

2013年11月5日 #

asp.net URL传递中文参数System.Web.HttpUtility.UrlEncode与Server.UrlEncode的区别

摘要: asp.net URL传递中文参数System.Web.HttpUtility.UrlEncode与Server.UrlEncode的区别(一)HttpUtility.UrlEncode 方法:对 URL 字符串进行编码,以便实现从 Web 服务器到客户端的可靠的 HTTP 传输。重载列表将字节数组转换为已编码的 URL 字符串,以便实现从 Web 服务器到客户端的可靠的 HTTP 传输。[C#] public static string UrlEncode(byte[]);对 URL 字符串进行编码,以便实现从 Web 服务器到客户端的可靠的 HTTP 传输。[C#] public stat 阅读全文

posted @ 2013-11-05 20:30 paul_cheung 阅读(1067) 评论(0) 推荐(0) 编辑

2013年10月14日 #

百度map API

摘要: 1.做demo用的http://developer.baidu.com/map/jsdemo.htmdemo代码(外部使用的话需要提供密钥):百度地图的Hello, World2.API DOC:http://developer.baidu.com/map/reference/index.php定位 http://developer.baidu.com/map/jshome.htm定位,街景等API;3.Get key:http://lbsyun.baidu.com/apiconsole/key 阅读全文

posted @ 2013-10-14 11:37 paul_cheung 阅读(282) 评论(0) 推荐(0) 编辑

2013年9月30日 #

jquery mobile datepicker

摘要: 1.http://jquerymobile.com/demos/1.0a4.1/experiments/ui-datepicker/这个只能用在iOS和PC上,使用放在content的第一条,如下: 用$("List").html(html)动态加载的完数据后,使用下列语句绑定datepicker:var picker = $("#date", this); picker.mobipick(); picker.on("change", function () { var date = $(this).val(); ... 阅读全文

posted @ 2013-09-30 11:50 paul_cheung 阅读(1736) 评论(0) 推荐(0) 编辑

2013年9月27日 #

jquery mobile在移动设备上显示太大问题

摘要: head里边加入这个会让客户端元素很大。。。宽度都是device-width,不过比较大! solution:把后边的设置去掉 阅读全文

posted @ 2013-09-27 12:26 paul_cheung 阅读(329) 评论(0) 推荐(0) 编辑

2013年9月26日 #

jquery mobile动态加载数据后无法渲染

摘要: jquery mobile 阅读全文

posted @ 2013-09-26 17:32 paul_cheung 阅读(1035) 评论(0) 推荐(0) 编辑

2013年8月26日 #

readonly and const variable

摘要: 共同点:都是常量;不同点:const的值必须在编译前确定,通常在声明的同时赋值;而readonly可在运行时确定; 阅读全文

posted @ 2013-08-26 11:41 paul_cheung 阅读(153) 评论(0) 推荐(0) 编辑