主頁 > 知識庫 > Asp函數(shù)介紹(37個常用函數(shù))第1/2頁

Asp函數(shù)介紹(37個常用函數(shù))第1/2頁

熱門標簽:徐州人工智能電銷機器人好用嗎 智能電銷機器人適用于哪些行業(yè) 外呼系統(tǒng)還用卡么 長沙防封電銷卡品牌 地圖標注服務(wù)哪家好 武漢營銷電話機器人軟件 地圖標注宅基地 騰訊地圖標注商戶關(guān)閉 西寧公司外呼系統(tǒng)平臺
1.函數(shù)array() 
功能:創(chuàng)建一個數(shù)組變量 
格式:array(list) 
參數(shù):list 為數(shù)組變量中的每個數(shù)值列,中間用逗號間隔 
例子: 
% i = array ("1","2","3") %> 
結(jié)果: i 被賦予為數(shù)組 
2.函數(shù)Cint() 
功能:將一表達式/其它類型的變量轉(zhuǎn)換成整數(shù)類型(int) 
格式:Cint(expression) 
參數(shù):expression 是任何有效的表達式/其它類型的變量 
例子: 
% 
f = "234" 
response.write cINT(f) + 2 
%> 
結(jié)果: 236 
函數(shù)Cint()將字符"234"轉(zhuǎn)換 成整數(shù)234.如果表達式為空, 或者無效時,返回值為0; 
3.函數(shù):Creatobject() 
功能:創(chuàng)建及返回一個ActiveX對象. 
格式:Creatobject(obname) 
參數(shù)bname 是對象的名稱 
例子: 
% 
Set con = Server.CreateObject("ADODB.Connection") 
%> 
結(jié)果: 
4.函數(shù)Cstr() 
功能:將一表達式/其它類型的變量轉(zhuǎn)換成字符類型(string) 
格式:Cstr(expression) 
參數(shù):expression是任何有效的表達式/其它類型的變量 
例子: 
% 
s = 3 + 2 
response.write "The result is:"  cStr(s) 
%> 
結(jié)果:函數(shù)Cstr()將整數(shù) 5 轉(zhuǎn)換 成字符"5". 
5.函數(shù)Date() 
功能:返回當前系統(tǒng)(server端)的日期 
格式: Date() 
參數(shù):無 
例子% date () %> 
結(jié)果:05/10/00 
6.函數(shù)Dateadd() 
功能:計算某個指定的時間和 
格式: dateadd(timeinterval,number,date) 
參數(shù):timeinterval是時間單位(月,日..); number是時間間隔值,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 
%> 
結(jié)果: 
11/4/99 
3:34:45 PM 
其中 
"m" = "month"; 
"d" = "day"; 
如果是currentDate 格式,則, 
"h" = "hour"; 
"s" = "second"; 
7.函數(shù)Datediff() 
功能:計算某量個指定的時間差 
格式: datediff(timeinterval,date1,date2[,firstdayofweek[,firstdayofyear]]) 
參數(shù): timeinterval 是時間單位; date1,date2是有效的日期表達式,firstdayofweek,firstdayofyear 是任意選項. 
例子: 
% 
fromDate = #8/4/99# 
toDate = #1/1/2000# 
response.write "There are "  _ 
DateDiff("d",fromDate,toDate)  _ 
" days to millenium from 8/4/99." 
%> 
結(jié)果:There are 150 days to millenium from 8/4/99. 
8.函數(shù)day() 
功能:返回一個整數(shù)值,對應于某月的某日 
格式: day(date) 
參數(shù): date是一個有效的日期表達式; 
例子% =date(#8/4/99#) %> 
結(jié)果:4 
9.函數(shù)formatcurrency() 
功能:轉(zhuǎn)換成貨幣格式 
格式: formatcurrency(expression [,digit[,leadingdigit[,paren[,groupdigit]]]]) 
參數(shù): expression 是有效的數(shù)字表達式;digit表示小數(shù)點后的位數(shù);leadingdigit,paren,groupdigit是任意選項. 
例子%=FormatCurrency(34.3456)%> 
結(jié)果34.35 
10.函數(shù)Formatdatetime() 
功能:格式化日期表達式/變量 
格式: formatdatetime(date[,nameformat]) 
參數(shù): date為有效的日期表達式/變量;nameformat是指定的日期格式常量名稱. 
例子% =formatdatetime("08/04/99",vblongdate) %> 
結(jié)果:Wednesday,August 04,1999 
說明: 
--------------------------------------------------------------------------------
描述
返回表達式,此表達式已被格式化為日期或時間?!?
語法
FormatDateTime(Date[, NamedFormat])
FormatDateTime 函數(shù)的語法有以下參數(shù):

參數(shù) 描述 
Date 必選項。要被格式化的日期表達式?!?
NamedFormat 可選項。指示所使用的日期/時間格式的數(shù)值,如果省略,則使用 vbGeneralDate?!?


設(shè)置
NamedFormat 參數(shù)可以有以下值:
常數(shù) 值 描述 
vbGeneralDate 0 顯示日期和/或時間。如果有日期部分,則將該部分顯示為短日期格式。如果有時間部分,則將該部分顯示為長時間格式。如果都存在,則顯示所有部分。 
vbLongDate 1 使用計算機區(qū)域設(shè)置中指定的長日期格式顯示日期?!?
vbShortDate 2 使用計算機區(qū)域設(shè)置中指定的短日期格式顯示日期?!?
vbLongTime 3 使用計算機區(qū)域設(shè)置中指定的時間格式顯示時間?!?
vbShortTime 4 使用 24 小時格式 (hh:mm) 顯示時間?!?

說明
下面例子利用 FormatDateTime 函數(shù)把表達式格式化為長日期型并且把它賦給 MyDateTime: 
Function GetCurrentDate 
"FormatDateTime 把日期型格式化為長日期型。
GetCurrentDate = FormatDateTime(Date, 1) 
End Function
-------------------------------------------------------------------------------- 

[Ctrl+A 全選 注:引入外部Js需再刷新一下頁面才能執(zhí)行]



11.函數(shù)Isnumeric() 
功能:返回一個布爾值,判斷變量是否為數(shù)字變量,或者是可以轉(zhuǎn)換成數(shù)字的其它變量. 
格式:isnumeric(expression) 
參數(shù):expression 是任意的變量. 
例子: 
% 
i="234" 
response.write isnumeric(i) 
%> 
結(jié)果: true. 
12.函數(shù)Isobject() 
功能:返回一個布爾值,判斷變量是否為對象的變量, 
格式: isobject(expression) 
參數(shù): expression 是任意的變量. 
例子: 
% 
set con =server.creatobject("adodb.connection") 
response.write isobject(con) 
%> 
結(jié)果: true 
13.函數(shù):Lbound() 
功能:返回一個數(shù)組的下界. 
格式:Lbound(arrayname[,dimension]) 
參數(shù):arrayname 是數(shù)組變量,dimension 是任意項 
例子: 
% 
i = array("1","2","3") 
response.write lbound(i) 
%> 
結(jié)果:0
14.函數(shù)Lcase() 
功能:將一字符類型變量的字符全部變換小寫字符. 
格式:Lcase(string) 
參數(shù):string是字符串變量 
例子: 
% 
str="THIS is Lcase!" 
response.write Lcase(str) 
%> 
結(jié)果:this is lcase! 
15.函數(shù)left() 
功能:截取一個字符串的前部分; 
格式:left(string,length) 
參數(shù):string字符串,length截取的長度. 
例子: % =left("this is a test!",6) %> 
結(jié)果:this i 
12下一頁閱讀全文

標簽:鷹潭 通化 雅安 巴彥淖爾 荊門 運城 普洱 通遼

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Asp函數(shù)介紹(37個常用函數(shù))第1/2頁》,本文關(guān)鍵詞  Asp,函數(shù),介紹,37個,常用,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Asp函數(shù)介紹(37個常用函數(shù))第1/2頁》相關(guān)的同類信息!
  • 本頁收集關(guān)于Asp函數(shù)介紹(37個常用函數(shù))第1/2頁的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章