摘要: //保留两位小数 //功能:将浮点数四舍五入,取小数点后2位 function toDecimal(x) { var f = parseFloat(x); if (isNaN(f)) { return; } f = Math... 阅读全文
posted @ 2014-04-12 17:34 code_flyer 阅读(2096) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/wupeiqi/archive/2013/03/03/2941295.html 工作进程: 在iis中,工作进程(w3wp.exe)运行着asp.net应用程序,管理并响应所有的请求,asp.net所有的功能都运行在工作进程下,当请求到来时,工作进程会生成request和response相关信息。 应用程序池: 应用程序池是工作进程的容器。通常用... 阅读全文
posted @ 2014-04-12 16:48 code_flyer 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/wupeiqi/archive/2013/05/04/3058914.html 这里详细的介绍了各种数据库的各种连接http://www.connectionstrings.com/ 例如:String strConn="Data Source=.;Initial Catalog=数据库的名字;Integrated Security=ture" ... 阅读全文
posted @ 2014-04-12 14:27 code_flyer 阅读(673) 评论(0) 推荐(0) 编辑