資源描述:
《asp函數(shù)大全之函數(shù).doc》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、1、asp函數(shù)大全之函數(shù)array()函數(shù)array() 功能:創(chuàng)建一個(gè)數(shù)組變量 格式:array(list) 參數(shù):list為數(shù)組變量中的每個(gè)數(shù)值列,中間用逗號(hào)間隔 例子: <%asp=array("1","2","3")%> 結(jié)果:asp被賦予為數(shù)組 2、asp函數(shù)大全函數(shù)Creatobject()函數(shù):Creatobject() 功能:創(chuàng)建及返回一個(gè)ActiveX對(duì)象. 格式:Creatobject(obname) 參數(shù)bname是對(duì)象的名稱 例子: <% Setasp=Server.CreateObject("ADODB.Connection") %>3、asp函
2、數(shù)大全之函數(shù)Date()函數(shù)Date() 功能:返回當(dāng)前系統(tǒng)(server端)的日期 格式:Date() 參數(shù):無(wú)例子<%=date()%> 4、asp函數(shù)大全函數(shù)Datediff()函數(shù)Datediff() 功能:計(jì)算某量個(gè)指定的時(shí)間差 格式: datediff(timeinterval,date1,date2[,firstdayofweek[,firstdayofyear]]) 參數(shù): timeinterval 是時(shí)間單位; date1,date2是有效的日期表達(dá)式,firstdayofweek,firstdayofyear 是任意選項(xiàng). 例子: <% fromDat
3、e = #8/8/2008# toDate = #8/8/2010# response.write "There are " & _ DateDiff("d",fromDate,toDate) & _ %>5、函數(shù)formatcurrency()函數(shù)formatcurrency() 功能:轉(zhuǎn)換成貨幣格式 格式: formatcurrency(expression [,digit[,leadingdigit[,paren[,groupdigit]]]]) 參數(shù): expression 是有效的數(shù)字表達(dá)式;digit表示小數(shù)點(diǎn)后的位數(shù);leadingdigit,paren,g
4、roupdigit是任意選項(xiàng). 例子<%=FormatCurrency(34.3456)%> 結(jié)果34.356、asp函數(shù)大全之函數(shù)Isnumeric()函數(shù)Isnumeric() 功能:返回一個(gè)布爾值,判斷變量是否為數(shù)字變量,或者是可以轉(zhuǎn)換成數(shù)字的其它變量. 格式:isnumeric(expression) 參數(shù):expression 是任意的變量. 例子: <% i="234" response.write isnumeric(i) %> 結(jié)果: true.7、asp函數(shù)大全之函數(shù):Lbound()函數(shù):Lbound() 功能:返回一個(gè)數(shù)組的下界. 格式:Lbound
5、(arrayname[,dimension]) 參數(shù):arrayname 是數(shù)組變量,dimension 是任意項(xiàng) 例子: <% i = array("1","2","3") response.write lbound(i) %> 結(jié)果:08、asp函數(shù)大全之函數(shù)left()功能:截取一個(gè)字符串的前部分; 格式:left(string,length) 參數(shù):string字符串,length截取的長(zhǎng)度. 例子: <% =left("asp is a web!",3) %> 結(jié)果:asp9、asp函數(shù)大全之函數(shù)ltrim()功能:去掉字符串前的空格. 格式:ltrim(str
6、ing) 參數(shù):string 字符串. 例子: <% =ltrim (" this is a test!") 結(jié)果:this is a test! 10、asp函數(shù)大全之函數(shù)minute()功能:返回一數(shù)值, 表示分鐘 格式:minute(time) 參數(shù): time是時(shí)間變量 例子lt;% =minute(#12:23:34#) %> 結(jié)果:23 11、asp函數(shù)大全之函數(shù)monthname()功能:返回月份的字符串(名稱). 格式:Monthname(date [,abb]) 參數(shù): date是日期變量,abb=true時(shí) 則月份的縮寫(xiě), 例子: <% =monthn
7、ame(#4/5/99#) %> 結(jié)果:April12、asp函數(shù)大全之函數(shù)replace()功能:在字符串中查找,替代指定的字符串. 格式:replace(strtobesearched,strsearchfor,strreplacewith [,start[,count[,compare]]]) 參數(shù):strtobesearched是字符串; strsearchfor是被查找的子字符串;strreplacewith 是用來(lái)替代的子字符串.start,count,compare 是任意選項(xiàng). 例子: <% strtest="