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