摘要:
function replacestr(str)dim reset re=new regexpre.ignorecase=truere.global=truere.pattern="\D"str=re.replace(str,"")replacestr=strset re=nothingend function 阅读全文
摘要:
<!--#include file="include/conn.asp"--><script language = "javascript">var j;j=0;goaler = new Array();<%set rs=conn.execute("select * from SmallClass order by SmallClassID")if rs.eof then%>goaler[0] = new Array("无分类","","" 阅读全文
摘要:
'========月日不足两位补零函数==================function FillZero(str) ttt=str if len(str)=1 then ttt="0" & str end if FillZero=ttt end function function ConvertDate(tDate) ttt=tDate if isdate(tDate) then ttt=FillZero(month(tDate)) & "/" & FillZero(day(tDate)) end if Convert 阅读全文