摘要: 1、向上进位取整。Math.Ceiling例如: Math.Ceiling(32.2)=33; Math.Ceiling(32.0)=32;2、向下舍位取整。Math.Floor例如: Math.Floor(32.6)=32;3、取指定位数的小数。Math.Round例如:Math.Round(36... 阅读全文
posted @ 2014-12-01 20:42 甲壳虫博客 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 分页的SQL语句sql="select * from (select row_number() over(orderby id) as num,* from table)as t where t.num>=@start and t.num<=@end";分页的公式int start=(pageInd... 阅读全文
posted @ 2014-12-01 20:39 甲壳虫博客 阅读(872) 评论(0) 推荐(0) 编辑
摘要: <html><body bgcolor="#000000"><p align="center"><object type="application/x-shockwave-flash" data="vcastr3.swf" tppabs="vcastr3.swf" width="450" height="290" id="vcastr3" > <param name="mo 阅读全文
posted @ 2012-12-14 09:11 甲壳虫博客 阅读(450) 评论(0) 推荐(0) 编辑
摘要: function mWin(src, width, height, showScroll){ ret = window.showModalDialog(src, "", "location:No;status:No;help:No;dialogWidth:" + width + ";dialogHeight:" + height + ";scroll:" + showScroll + ";"); if (ret == "ok") { window.location.reloa 阅读全文
posted @ 2012-12-14 09:01 甲壳虫博客 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 第一种方法,采用浏览器的不同反回结果if(! -[1,]){ //IE浏览器}else{ //IPAD Safari}第二种方法,用脚本识别if (navigator.userAgent.indexOf("iPad") > 0) {//Ipad}else if (navigator.userAgent.indexOf("iPhone") > 0) {//Iphone}else {//Ie} 阅读全文
posted @ 2012-12-12 16:35 甲壳虫博客 阅读(288) 评论(0) 推荐(0) 编辑