04 2011 档案
摘要:--包含数字SELECT * FROM Log WHERE LogInfo LIKE '%[0-9]%'--不包含数字SELECT * FROM Log WHERE LogInfo NOT LIKE '%[0-9]%'
阅读全文
摘要:function CreateXMLHttp() { var xmlhttp=null; if (window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } return xmlhttp; }
阅读全文