摘要: var iosSelect = true, androidSelect = true, windowsSelect = true, allSelect = true; $(function () { $("#ios").click(function () { if (iosSelect) { $("#ios").attr("src", "/Content/images/icon/icon_Remember2.png"); iosSelect = false; ... 阅读全文
posted @ 2013-01-31 20:37 瓜王 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1、Cleanliness is next to godliness.(整洁近乎虔诚)2、认真对待每个变量名。你当用为自己第一个孩子命名般的谨慎来给变量命名。3、衡量代码质量的唯一有效标准: WTF/min (很真实很搞笑!) 注:WTF=What the fuck!4、代码确然是我们最终用来表达需求的那种语言。 阅读全文
posted @ 2013-01-29 20:45 瓜王 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 经过各种与客户端联调,仍然不行。最后问题出在服务器发布的版本不一致。下次碰到问题,可能看起来很大,别被吓着了。其实可能就是一个小mistake。 阅读全文
posted @ 2013-01-23 22:00 瓜王 阅读(94) 评论(0) 推荐(0) 编辑
摘要: declare @Jan int,@Feb intselect @Jan=count(*) from T_CALL_DOCTORCALL where callstate in(1,2) and updatetime>'2012-01-01' and updatetime<'2012-02-01'select @Feb=count(*) from T_CALL_DOCTORCALL where callstate in(1,2) and updatetime>'2012-02-01' and updatetime<' 阅读全文
posted @ 2013-01-18 18:40 瓜王 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 所有的join语句都跟连接顺序相关1、cross join(交叉联接):生成笛卡尔积后,一定不能写on或where条件。 eg:select * from table_2 a cross join table_1 b2、inner join(内联接):生成笛卡尔积后根据on条件筛选 eg:select * from table_1 a inner join table_2 b on a.id=b.userid 此语句相当于:select * from table_1 a,table_2 b where a.id=b.userid3、left [outer] join(左外联):在inner . 阅读全文
posted @ 2013-01-17 18:50 瓜王 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 在操作数据库时发生错误:Cannot resolve the collation conflict between "Chinese_PRC_CI_AS" and "Chinese_PRC_CS_AS" in the equal to operation.原因是用join连接时,其中一个表有区分大小写,另一个表没有区分。Chinese_PRC_CS_AS表示区分了大小写Chinese_PRC_CI_AS表示没有区分。为了查询,可以在sql语句后加collate Chinese_PRC_CS_AS,强制区分大小写。 阅读全文
posted @ 2013-01-17 17:57 瓜王 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 最后一个参数为类型参数,可参考http://www.blogjava.net/sealyu/archive/2009/11/05/301216.htmlconvert(datetime,'2011-07-01 00:00:00.000',21) 阅读全文
posted @ 2013-01-14 14:47 瓜王 阅读(4664) 评论(0) 推荐(0) 编辑
摘要: orderby:如果先按照年龄,再按照姓名排序,可以这样写:_db.t_person.OrderBy(a=>a.age).ThenBy(b=>b.name)但由于t_sql里没有thenby语句,所以也可以这么写:_db.t_person.OrderBy(a=>a.name).OrderBy(b=>b.age)必须反过来 阅读全文
posted @ 2013-01-11 11:21 瓜王 阅读(479) 评论(0) 推荐(0) 编辑
摘要: controller里正常返回actionresult。在界面上则写:@{ Layout = null; Response.ContentType = "application/vnd.ms-excel"; Response.AddHeader("Content-Disposition", "attachment; filename=report.xls"); //Content-Disposition is defined in RFC-2183}<?xml version="1.0" encoding=& 阅读全文
posted @ 2013-01-08 20:17 瓜王 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 为了完成与IOS客户端的通信,在AES端的加密程序中,必须注意设置RijndaelManaged类实例的mode 和padding属性。前者需要设置为CipherMode.ECB,后者需要与客户端沟通,统一设置,在本样例中设置为补0。样例代码: byte[] buffer = Encoding.UTF8.GetBytes("被加密的文字"); var key = Encoding.UTF8.GetBytes("0000000000000001");//16位密匙 RijndaelManaged rDel = new Rijn... 阅读全文
posted @ 2013-01-06 09:23 瓜王 阅读(364) 评论(0) 推荐(0) 编辑