ASP中常用的函數和詳細說明第1/2頁

來源:互聯網
上載者:User

各位都把ASP用的函數和詳細說明貼出來,供大家學習.
我知道的如下:
1.函數array() 
功能:建立一個陣列變數 
格式:array(list) 
參數:list 為陣列變數中的每個數值列,中間用逗號間隔 
例子: 
<% i = array ("1","2","3") %> 
結果: i 被賦予為數組 
2.函數Cint() 
功能:將一運算式/其它類型的變數轉換成整數類型(int) 
格式:Cint(expression) 
參數:expression 是任何有效運算式/其它類型的變數 
例子: 
<% 
f = "234" 
response.write cINT(f) + 2 
%> 
結果: 236 
函數Cint()將字元"234"轉換 成整數234.如果運算式為空白, 或者無效時,傳回值為0; 
3.函數:Creatobject() 
功能:建立及返回一個ActiveX對象. 
格式:Creatobject(obname) 
參數bname 是對象的名稱 
例子: 
<% 
Set con = Server.CreateObject("ADODB.Connection") 
%> 
結果: 
4.函數Cstr() 
功能:將一運算式/其它類型的變數轉換成字元類型(string) 
格式:Cstr(expression) 
參數:expression是任何有效運算式/其它類型的變數 
例子: 
<% 
s = 3 + 2 
response.write "The result is:" & cStr(s) 
%> 
結果:函數Cstr()將整數 5 轉換 成字元"5". 
5.函數Date() 
功能:返回當前系統(server端)的日期 
格式: Date() 
參數:無 
例子<% date () %> 
結果:05/10/00 
6.函數Dateadd() 
功能:計算某個指定的時間和 
格式: dateadd(timeinterval,number,date) 
參數: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 
%> 
結果: 
11/4/99 
3:34:45 PM 
其中 
"m" = "month"; 
"d" = "day"; 
如果是currentDate 格式,則, 
"h" = "hour"; 
"s" = "second"; 
7.函數Datediff() 
功能:計算某量個指定的時間差 
格式: datediff(timeinterval,date1,date2[,firstdayofweek[,firstdayofyear]]) 
參數: 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." 
%> 
結果:There are 150 days to millenium from 8/4/99. 
8.函數day() 
功能:返回一個整數值,對應於某月的某日 
格式: day(date) 
參數: date是一個有效日期運算式; 
例子<% =date(#8/4/99#) %> 
結果:4 
9.函數formatcurrency() 
功能:轉換成貨幣格式 
格式: formatcurrency(expression [,digit[,leadingdigit[,paren[,groupdigit]]]]) 
參數: expression 是有效數字運算式;digit表示小數點後的位元;leadingdigit,paren,groupdigit是任意選項. 
例子<%=formatCurrency(34.3456)%> 
結果34.35 
10.函數formatdatetime() 
功能:格式化日期運算式/變數 
格式: formatdatetime(date[,nameformat]) 
參數: date為有效日期運算式/變數;nameformat是指定的日期格式常量名稱. 
例子<% =formatdatetime("08/04/99",vblongdate) %> 
結果:Wednesday,August 04,1999 
說明: 
-------------------------------------------------------------------<script language=vbs>
for i=0 to 4
alert(" formatdatetime(now,"&i&") 的時候是:"&formatdatetime(now,i))
next
</script>

-------------
描述
返回運算式,此運算式已被格式化為日期或時間。 
文法
formatDateTime(Date[, Namedformat])
formatDateTime 函數的文法有以下參數:

參數 描述 
Date 必選項。要被格式化的日期運算式。 
Namedformat 可選項。指示所使用的日期/時間格式的數值,如果省略,則使用 vbGeneralDate。 

設定
Namedformat 參數可以有以下值:
常數 值 描述 
vbGeneralDate 0 顯示日期和/或時間。如果有日期部分,則將該部分顯示為短日期格式。如果有時間部分,則將該部分顯示為長時間格式。如果都存在,則顯示所有部分。 
vbLongDate 1 使用電腦地區設定中指定的長日期格式顯示日期。 
vbShortDate 2 使用電腦地區設定中指定的短日期格式顯示日期。 
vbLongTime 3 使用電腦地區設定中指定的時間格式顯示時間。 
vbShortTime 4 使用 24 小時格式 (hh:mm) 顯示時間。 

說明
下面例子利用 formatDateTime 函數把運算式格式化為長日期型並且把它賦給 MyDateTime: 
Function GetCurrentDate 
"formatDateTime 把日期型格式化為長日期型。
GetCurrentDate = formatDateTime(Date, 1) 
End Function
--------------------------------------------------------------------------------
<script language=vbs>
for i=0 to 4
alert(" formatdatetime(now,"&i&") 的時候是:"&formatdatetime(now,i))
next
</script>
[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運行]  

11.函數Isnumeric() 
功能:返回一個布爾值,判斷變數是否為數字變數,或者是可以轉換成數位其它變數. 
格式:isnumeric(expression) 
參數:expression 是任意的變數. 
例子: 
<% 
i="234" 
response.write isnumeric(i) 
%> 
結果: true. 
12.函數Isobject() 
功能:返回一個布爾值,判斷變數是否為對象的變數, 
格式: isobject(expression) 
參數: expression 是任意的變數. 
例子: 
<% 
set con =server.creatobject("adodb.connection") 
response.write isobject(con) 
%> 
結果: true 
13.函數:Lbound() 
功能:返回一個數組的下界. 
格式:Lbound(arrayname[,dimension]) 
參數:arrayname 是陣列變數,dimension 是任意項 
例子: 
<% 
i = array("1","2","3") 
response.write lbound(i) 
%> 
結果:0
14.函數Lcase() 
功能:將一字元類型變數的字元全部變換小寫字元. 
格式:Lcase(string) 
參數:string是字串變數 
例子: 
<% 
str="THIS is Lcase!" 
response.write Lcase(str) 
%> 
結果:this is lcase! 
15.函數left() 
功能:截取一個字串的前部分; 
格式:left(string,length) 
參數:string字串,length截取的長度. 
例子: <% =left("this is a test!",6) %> 
結果:this i 
16.函數len() 
功能:返回字串長度或者變數的位元組長度 
格式:len(string *varname) 
參數:string字串;varname任意的變數名稱 
例子: 
<% 
strtest="this is a test!" 
response.write len(strtest) 
%> 
結果:15 
17.函數ltrim() 
功能:去掉字串前的空格. 
格式:ltrim(string) 
參數:string 字串. 
例子: <% =ltrim (" this is a test!") 
結果:this is a test! 
18.函數Mid() 
功能:從字串中截取字串. 
格式:mid(string,start [,length]) 
參數:string字串,start截取的起點,length要截取的長度. 
例子: 
<% 
strtest="this is a test, Today is Monday!" 
response.write mid(strtest,17,5) 
%> 
結果:Today 
19.函數minute() 
功能:返回一數值, 表示分鐘 
格式:minute(time) 
參數: time是時間變數 
例子lt;% =minute(#12:23:34#) %> 
結果:23 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.