欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP函数大全解析

程序员文章站 2022-03-26 08:58:07
array()  函数返回一个数组 表达式 array(list) 允许数据类型: 字符,数字均可 实例: <% d...

array() 
函数返回一个数组
表达式 array(list)
允许数据类型: 字符,数字均可
实例:

<%
dim myarray()
for i = 1 to 7
redim preserve myarray(i)
myarray(i) = weekdayname(i)
next
%>

返回结果: 建立了一个包含7个元素的数组myarray
myarray("sunday","monday", ... ... "saturday") 

cint()
函数将一个表达式转化为数字类型
表达式 cint()
允许数据类型: 任何有效的字符均可
实例:

<%
f = "234"
response.write cint(f) + 2
%>

返回结果: 236
转化字符"234"为数字"234",如果字符串为空,则返回0值

 

createobject()
函数建立和返回一个已注册的activex组件的实例。
表达式 createobject(objname)
允许数据类型: objname 是任何一个有效、已注册的activex组件的名字.
实例: 

<%
set con = server.createobject("adodb.connection")
%>

cstr()
函数转化一个表达式为字符串.
表达式 cstr(expression)
允许数据类型: expression 是任何有效的表达式。
实例: 

<%
s = 3 + 2
response.write "the 返回结果 is: " & cstr(s)
%>

返回结果: 转化数字“5”为字符“5”。

date() 
函数返回当前系统日期.
表达式 date()
允许数据类型: none.
实例: 

<%=date%>

返回结果: 9/9/00


dateadd() 
函数返回一个被改变了的日期。
表达式 dateadd(timeinterval,number,date)
允许数据类型:
timeinterval is the time interval to add;
number is amount of time intervals to add;
and date is the starting date.
实例: 

<%
currentdate = #9/9/00#
newdate = dateadd("m",3,currentdate)
response.write newdate
%>
<%
currentdate = #12:34:45 pm#
newdate = dateadd("h",3,currentdate)
response.write newdate
%>

返回结果: 

9/9/00
3:34:45 pm
"m" = "month";
"d" = "day";
if currentdate is in time format then,
"h" = "hour";
"s" = "second";

datediff() 
函数返回两个日期之间的差值 。
表达式 datediff(timeinterval,date1,date2 [, firstdayofweek [, firstweekofyear]])
允许数据类型: timeinterval 表示相隔时间的类型,如“m“表示“月”。
实例:

<%
fromdate = #9/9/00#
todate = #1/1/2000#
response.write "there are " & _
datediff("d",fromdate,todate) & _
" days to millenium from 9/9/00."
%>

返回结果: 从9/9/00 到2000年还有 150 天.

day() 
函数返回一个月的第几日 .
表达式 day(date)
允许数据类型: date 是任何有效的日期。
实例: 

<%=day(#9/9/00#)%>

返回结果: 4

formatcurrency() 
函数返回表达式,此表达式已被格式化为货币值
表达式 formatcurrency(expression [, digit [, leadingdigit [, paren [, groupdigit]]]])
允许数据类型: digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置; leadingdigit 三态常数,指示是否显示小数值小数点前面的零。
实例:

 <%=formatcurrency(34.3456)%>

返回结果: $34.35

以上就是asp函数大全的全部内容,希望对大家的学习有所帮助。