ASP数据类型函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP数据类型函数相关的知识,希望对你有一定的参考价值。


P函数与VBSCRIPT类似,以下举一些常用的函数:

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(expression)

允许数据类型: 任何有效的字符均可

实例: %

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(timeinte......春花含笑意 爆竹增欢声喜气盈门
参考技术A cdate(variant):转换成日期子类型
cstr(variant):转换成字符串子类型
cbyte(variant):转换成byte子类型
cint(variant):转换成整数子类型
cbool(variant):转换成布尔子类型
chr(variant):ASCII码对应的字符

以上是关于ASP数据类型函数的主要内容,如果未能解决你的问题,请参考以下文章

ASP Action函数 如何接收前台ajax传递的数据(编辑中。。。)

急急急!!!在asp里怎么把label.text类型转换成double??

MySQL常用的数据类型及函数_20160920

ASP+SQL的时间数据类型

ASP中有啥函数把文本型值转换为数值型值?

在asp.net中如何将DataSet类型的数据集转换为List类型