资源描述:
《asp函数大全之函数.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、1、asp函数大全之函数array()函数array() 功能:创建一个数组变量 格式:array(list) 参数:list为数组变量中的每个数值列,中间用逗号间隔 例子: <%asp=array("1","2","3")%> 结果:asp被赋予为数组 2、asp函数大全函数Creatobject()函数:Creatobject() 功能:创建及返回一个ActiveX对象. 格式:Creatobject(obname) 参数bname是对象的名称 例子: <% Setasp=Server.CreateObject("ADODB.Connection") %>3、asp函
2、数大全之函数Date()函数Date() 功能:返回当前系统(server端)的日期 格式:Date() 参数:无例子<%=date()%> 4、asp函数大全函数Datediff()函数Datediff() 功能:计算某量个指定的时间差 格式: datediff(timeinterval,date1,date2[,firstdayofweek[,firstdayofyear]]) 参数: timeinterval 是时间单位; date1,date2是有效的日期表达式,firstdayofweek,firstdayofyear 是任意选项. 例子: <% fromDat
3、e = #8/8/2008# toDate = #8/8/2010# response.write "There are " & _ DateDiff("d",fromDate,toDate) & _ %>5、函数formatcurrency()函数formatcurrency() 功能:转换成货币格式 格式: formatcurrency(expression [,digit[,leadingdigit[,paren[,groupdigit]]]]) 参数: expression 是有效的数字表达式;digit表示小数点后的位数;leadingdigit,paren,g
4、roupdigit是任意选项. 例子<%=FormatCurrency(34.3456)%> 结果34.356、asp函数大全之函数Isnumeric()函数Isnumeric() 功能:返回一个布尔值,判断变量是否为数字变量,或者是可以转换成数字的其它变量. 格式:isnumeric(expression) 参数:expression 是任意的变量. 例子: <% i="234" response.write isnumeric(i) %> 结果: true.7、asp函数大全之函数:Lbound()函数:Lbound() 功能:返回一个数组的下界. 格式:Lbound
5、(arrayname[,dimension]) 参数:arrayname 是数组变量,dimension 是任意项 例子: <% i = array("1","2","3") response.write lbound(i) %> 结果:08、asp函数大全之函数left()功能:截取一个字符串的前部分; 格式:left(string,length) 参数:string字符串,length截取的长度. 例子: <% =left("asp is a web!",3) %> 结果:asp9、asp函数大全之函数ltrim()功能:去掉字符串前的空格. 格式:ltrim(str
6、ing) 参数:string 字符串. 例子: <% =ltrim (" this is a test!") 结果:this is a test! 10、asp函数大全之函数minute()功能:返回一数值, 表示分钟 格式:minute(time) 参数: time是时间变量 例子lt;% =minute(#12:23:34#) %> 结果:23 11、asp函数大全之函数monthname()功能:返回月份的字符串(名称). 格式:Monthname(date [,abb]) 参数: date是日期变量,abb=true时 则月份的缩写, 例子: <% =monthn
7、ame(#4/5/99#) %> 结果:April12、asp函数大全之函数replace()功能:在字符串中查找,替代指定的字符串. 格式:replace(strtobesearched,strsearchfor,strreplacewith [,start[,count[,compare]]]) 参数:strtobesearched是字符串; strsearchfor是被查找的子字符串;strreplacewith 是用来替代的子字符串.start,count,compare 是任意选项. 例子: <% strtest="