Array() 功能: 返回一个数组 格式: Array(list) 参数:字符,数字均可 示例: <% Dim myArray() For i = 1 to 7 Redim Preserve myArray(i) myArray(i) = WeekdayName(i) Next %> [转自:711网络工作室 http://www.tc711.com]
结果: 建立了一个包含7个元素的数组myArray myArray("Sunday","Monday", ... ... "Saturday") CInt() 功能: 将一个表达式转化为数字类型 格式: CInt(expression) 参数:任何有效的字符均可 示例: <% f = "234" response.write cINT(f) + 2 %> [转自:711网络工作室 http://www.tc711.com]
结果: 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 result is: " & cStr(s) %>
结果: 转化数字“5”为字符“5”。 Date() 功能: 返回当前系统日期. 格式: Date() 参数:None. 示例: <%=Date%>
结果: 8/4/99 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 = #8/4/99# newDate = DateAdd("m",3,currentDate) response.write newDate %> <% currentDate = #12:34:45 PM# newDate = DateAdd("h",3,currentDate) response.write newDate %>
结果: 11/4/99 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 = #8/4/99# toDate = #1/1/2000# response.write "There are " & _ DateDiff("d",fromDate,toDate) & _ " days to millenium from 8/4/99." %>
结果: 从8/4/99 到2000年还有 150 天. Day() 功能: 返回一个月的第几日 . 格式: Day(date) 参数:date 是任何有效的日期。 示例: <%=Day(#8/4/99#)%>
结果: 4 FormatCurrency() 功能: 返回表达式,此表达式已被格式化为货币值 格式: FormatCurrency(Expression [, Digit ][, LeadingDigit ][, Paren ][, GroupDigit>>) ARGUMENTS: Digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是 计算机的区域设置; LeadingDigit 三态常数,指示是否显示小数值小数点前面的 零。 示例: <%=FormatCurrency(34.3456)%>
结果: $34.35 FormatDateTime() 功能: 返回表达式,此表达式已被格式化为日期或时间 格式: FormatDateTime(Date, [, NamedFormat]) 参数:NamedFormat 指示所使用的日期/时间格式的数值,如果省略,则使用 vbGeneralDate. 示例: <%=FormatDateTime("08/4/99", vbLongDate)%>
结果: Wednesday, August 04, 1999 FormatNumber() 功能: 返回表达式,此表达式已被格式化为数值. 格式: FormatNumber(Expression [, Digit ][, LeadingDigit ][, Paren ][, GroupDigit>>) ARGUMENTS: Digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是 计算机的区域设置。; LeadingDigit i指示小数点右侧显示位数的数值。默认值为 - 1,指示使用的是计算机的区域设置。; Paren 指示小数点右侧显示位数的数值。默认 值为 -1,指示使用的是计算机的区域设置。; GroupDigit i指示小数点右侧显示位数 的数值。默认值为 -1,指示使用的是计算机的区域设置。. 示例: <%=FormatNumber(45.324567, 3)%>
结果: 45.325 FormatPercent() 功能: 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 (%) 格式: FormatPercent(Expression [, Digit ][, LeadingDigit ][, Paren ][, GroupDigit>>) 参数:同上. 示例: <%=FormatPercent(0.45267, 3)%>
结果: 45.267% Hour() 功能: 以24时返回小时数. 格式: Hour(time) ARGUMENTS: 示例: <%=Hour(#4:45:34 PM#)%>
结果: 16 (Hour has been converted to 24-hour system) Instr() 功能: 返回字符或字符串在另一个字符串中第一次出现的位置. 格式: Instr([start, ] strToBeSearched, strSearchFor [, compare]) 参数:Start为搜索的起始值,strToBeSearched接受搜索的字符串 strSearchFor要搜索的字符.compare比较方式(详细见ASP常数) 示例: <% strText = "This is a test!!" pos = Instr(strText, "a") response.write pos %>
结果: 9 InstrRev() 功能: 同上,只是从字符串的最后一个搜索起 格式: InstrRev([start, ] strToBeSearched, strSearchFor [, compare]) 参数:同上. 示例: <% strText = "This is a test!!" pos = InstrRev(strText, "s") response.write pos %>
结果: 13
Int() 功能: 返回数值类型,不四舍五入,注意取值是不大于它的整数。 格式: Int(number) ARGUMENTS: 示例: <%=INT(32.89)%> [daima]<%=int(-3.33)%> 结果: 32 -4 IsArray() 功能: 判断一对象是否为数组,返回布尔值 . 格式: IsArray(name) ARGUMENTS: 示例: [daima]<% strTest = "Test!" response.write IsArray(strTest) %>
结果: False IsDate() 功能: 判断一对象是否为日期,返回布尔值 格式: IsDate(expression) 参数:expression is any valid expression. 示例: <% strTest = "8/4/99" response.write IsDate(strTest) %>
结果: True IsEmpty() 功能: 判断一对象是否初始化,返回布尔值. 格式: IsEmpty(expression) ARGUMENTS: 示例: <% Dim i response.write IsEmpty(i) %>
结果: True IsNull() 功能: 判断一对象是否为空,返回布尔值. 格式: IsNull(expression) ARGUMENTS: 示例: <% Dim i response.write IsNull(i) %>
结果: False IsNumeric() 功能: 判断一对象是否为数字,返回布尔值. 格式: IsNumeric(expression) ARGUMENTS: 示例: <% i = "345" response.write IsNumeric(i) %>
结果: True 就算数字加了引号,ASP还是认为它是数字。 IsObject() 功能: 判断一对象是否为对象,返回布尔值. 格式: IsObject(expression) ARGUMENTS: 示例: <% Set con = Server.CreateObject("ADODB.Connection") response.write IsObject(con) %>
结果: True LBound() 功能: 返回指定数组维的最小可用下标. 格式: Lbound(arrayname [, dimension]) 参数:; dimension 指明要返回哪一维下界的整数。使用 1 表示第一维,2 表示第二维,以此类推。如果省略 dimension 参数,默认值为 1. 示例: <% i = Array("Monday","Tuesday","Wednesday") response.write LBound(i) %>
结果: 0 LCase() 功能: 返回字符串的小写形式 格式: Lcase(string) 参数:string is any valid string expression. 示例: <% strTest = "This is a test!" response.write LCase(strTest) %>
结果: this is a test! Left() 功能: 返回字符串左边第length个字符以前的字符(含第length个字符). 格式: Left(string, length) ARGUMENTS: 示例: <% strTest = "This is a test!" response.write Left(strTest, 3) %>
结果: Thi Len() 功能: 返回字符串的长度. 格式: Len(string | varName) ARGUMENTS: 示例: <% strTest = "This is a test!" response.write Len(strTest) %>
结果: 15 LTrim() 功能: 去掉字符串左边的空格. 格式: LTrim(string) ARGUMENTS: 示例: <% strTest = " This is a test!" response.write LTrim(strTest) %>
结果: This is a test! Mid() 功能: 返回特定长度的字符串(从start开始,长度为length). 格式: Mid(string, start [, length]) ARGUMENTS: 示例: <% strTest = "This is a test! Today is Monday." response.write Mid(strTest, 17, 5) %>
结果: Today Minute() 功能: 返回时间的分钟. 格式: Minute(time) ARGUMENTS: 示例: <%=Minute(#12:45:32 PM#)%>
结果: 45 Month() 功能: 返回日期. 格式: Month(date) 参数:date is any valid date expression. 示例: <%=Month(#08/04/99#)%>
结果: 8 MonthName() 功能: Returns a string identifying the specified month. 格式: MonthName(month, [, Abb]) 参数:month is the numeric representation for a given month; Abb (optional) is a boolean value used to display month abbreviation. True will display the abbreviated month name and False (default) will not show the abbreviation. 示例: <%=MonthName(Month(#08/04/99#))%>
结果: August Now() 功能: Returns the current system date and time. 格式: Now() 参数:None 示例: <%=Now%>
结果: 8/4/99 9:30:16 AM Replace() 功能: Returns a string in which a specified sub-string has been replaced with another substring a specified number of times. 格式: Replace(strToBeSearched, strSearchFor, strReplaceWith [, start ][, count ][, compare>]) 参数:strToBeSearched is a string expression containing a sub- string to be replaced; strSearchFor is the string expression to search for within strToBeSearched; strReplaceWith is the string expression to replace sub-string strSearchFor; start (optional) is the numeric character position to begin search; count (optional) is a value indicating the comparision constant. 示例: <% strTest = "This is an apple!" response.write Replace(strTest, "apple", "orange") %>
结果: This is an orange! Right() 功能: 返回字符串右边第length个字符以前的字符(含第length个字符). 格式: Right(string, length) 参数:. 示例: <% strTest = "This is an test!" response.write Right(strTest, 3) %>
结果: st! Rnd() 功能: 产生一个随机数. 格式: Rnd [ (number) ] ARGUMENTS: 示例: <% Randomize() response.write RND() %>
结果: 任何一个在0 到 1 之间的数 Round() 功能: 返回按指定位数进行四舍五入的数值. 格式: Round(expression [, numRight]) 参数:numRight数字表明小数点右边有多少位进行四舍五入。如果省略,则 Round 函数返回整数. 示例: <% i = 32.45678 response.write Round(i) %>
结果: 32 Rtrim() 功能: 去掉字符串右边的字符串. 格式: Rtrim(string) ARGUMENTS: 示例: <% strTest = "This is a test!! " response.write RTrim(strTest) %>
结果: This is a test!! Second() 功能: 返回秒. 格式: Second(time) 参数:. 示例: <%=Second(#12:34:28 PM#)%>
结果: 28 StrReverse() 功能: 反排一字符串 格式: StrReverse(string) ARGUMENTS: 示例: <% strTest = "This is a test!!" response.write StrReverse(strTest) %>
结果: !!tset a si sihT Time() 功能: 返回系统时间. 格式: Time() 参数:. 示例: <%=Time%>
结果: 9:58:28 AM Trim() 功能: 去掉字符串左右的空格. 格式: Trim(string) 参数:string is any valid string expression. 示例: <% strTest = " This is a test!! " response.write Trim(strTest) %>
结果: This is a test!! UBound() 功能: 返回指定数组维数的最大可用下标. 格式: Ubound(arrayname [, dimension]) 参数:; dimension (optional) 指定返回哪一维上界的整数。1 表示第一 维,2 表示第二维,以此类推。如果省略 dimension 参数,则默认值为 1. 示例: <% i = Array("Monday","Tuesday","Wednesday") response.write UBound(i) %>
结果: 2 UCase() 功能: 返回字符串的大写形式. 格式: UCase(string) ARGUMENTS: 示例: <% strTest = "This is a test!!" response.write UCase(strTest) %>
结果: THIS IS A TEST!! VarType() 功能: 返回指示变量子类型的值 格式: VarType(varName) ARGUMENTS: 示例: <% i = 3 response.write varType(i) %>
结果: 2(数字)详见"asp常数" WeekDay() 功能: 返回在一周的第几天. 格式: WeekDay(date [, firstdayofweek]) 参数:. 示例: <% d = #8/4/99# response.write Weekday(d) %>
结果: 4(星期三) WeekDayName() 功能: 返回一周第几天的名字. 格式: WeekDayName(weekday [, Abb ][, firstdayofweek>) 参数:Abb可选。Boolean 值,指明是否缩写表示星期各天的名称。如果省 略, 默认值为 False,即不缩写星期各天的名称.firstdayofweek指明星期第一天的 数值 示例: <% d = #8/4/99# response.write WeekdayName(Weekday(d)) %>
结果: Wednesday Year() 功能: 返回当前的年份. 格式: Year(date) ARGUMENTS: 示例: <%=Year(#8/4/99#)%>
结果: 1999 |