07 2011 档案
摘要: 今天仔细差了一下SQL Sever中各种role的定义,记录备查 Predefined database roles You may need to create your own, but you ...阅读全文
摘要: 今天使用Path.GetTempFileName创建临时文件,抛出了exception:System.IO.IOException: The file exists。看了一下MSDN,The GetTempFileName method will raise an IOException if it is used to create more than 65535 files without deleting previous temporary files.The GetTempFileName method will raise an IOException if no unique t阅读全文
摘要: JavaScript的变量分为全局变量和局部变量全局变量(Global) 全局变量是指在任何地方都可以访问的变量,有两种情况在function外面声明,不论是否用var 关键字在function里面声明,不使用var关键字,当然声明的语句必须被执行才可以 局部变量(Local ) 局部变量只能在被声明的function内部才能访问 在function里面声明,不使用var关键字 两点要注意的地方先看代码 alert(i); //输出undefined for (var i = 0; i < 1; i++){}; alert(i); //输出1JavaScript不存在语句作用域,在语句内阅读全文
摘要: 两个小function实现XML和string相互转化 //convert string to xml object function String2XML(xmlString) { // for IE if (window.ActiveXObject) { var xmlobject = new ActiveXObject("Microsoft.XMLDOM"); xmlobject.async = "false"; xmlobject.loadXML(xmlstring); return xmlobject; } // for other brows阅读全文

