当前位置: 网学 > 编程文档 > ASP > 正文

asp 常用函数用法

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/17

以下是网学网为您推荐的ASP-asp 常用函数用法,希望本篇文章对您学习有所帮助。

Array()
   FUNCTION: 返回一个数组
   SYNTAX: Array(list)
   ARGUMENTS: 字符,数字均可
   EXAMPLE: <%
   Dim myArray()
   For i = 1 to 7
   Redim Preserve myArray(i)
   myArray(i) = WeekdayName(i)
   Next
   %>
   RESULT: 建立了一个包含7个元素的数组myArray
   myArray("Sunday","Monday", ... ... "Saturday")

CInt()
   FUNCTION: 将一个表达式转化为数字类型
   SYNTAX: CInt(expression)
   ARGUMENTS: 任何有效的字符均可
   EXAMPLE: <%
   f = "234"
   response.write cINT(f) + 2
   %>
   RESULT: 236
   转化字符"234"为数字"234",如果字符串为空,则返回0值

CreateObject()
   FUNCTION: 建立和返回一个已注册的ACTIVEX组件的实例。
   SYNTAX: CreateObject(objName)
   ARGUMENTS: objName 是任何一个有效、已注册的ACTIVEX组件的名字.
   EXAMPLE: <%
   Set con = Server.CreateObject("ADODB.Connection")
   %>
   RESULT:

CStr()
   FUNCTION: 转化一个表达式为字符串.
   SYNTAX: CStr(expression)
   ARGUMENTS: expression 是任何有效的表达式。
   EXAMPLE: <%
   s = 3 + 2
   response.write "The result is: " & cStr(s)
   %>
   RESULT: 转化数字“5”为字符“5”。

Date()
   FUNCTION: 返回当前系统日期.
   SYNTAX: Date()
   ARGUMENTS: None.
   EXAMPLE: <%=Date%>
   RESULT: 8/4/99

DateAdd()
   FUNCTION: 返回一个被改变了的日期。
   SYNTAX: DateAdd(timeinterval,number,date)
   ARGUMENTS: timeinterval is the time interval to add; number is amount of time intervals to add; and

date is the starting date.
   EXAMPLE: <%
   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
   %>
   RESULT: 11/4/99
   3:34:45 PM

   "m" = "month";
   "d" = "day";

   If currentDate is in time format then,
   "h" = "hour";
   "s" = "second";

DateDiff()
   FUNCTION: 返回两个日期之间的差值 。
   SYNTAX: DateDiff(timeinterval,date1,date2 [, firstdayofweek [, firstweekofyear>>)
   ARGUMENTS: timeinterval 表示相隔时间的类型,如“M“表示“月”。
   EXAMPLE: <%
   fromDate = #8/4/99#
   toDate = #1/1/2000#
   response.write "There are " & _
   DateDiff("d",fromDate,toDate) & _
   " days to millenium from 8/4/99."
   %>
   RESULT: 从8/4/99 到2000年还有 150 天.

Day()
   FUNCTION: 返回一个月的第几日 .
   SYNTAX: Day(date)
   ARGUMENTS: date 是任何有效的日期。
   EXAMPLE: <%=Day(#8/4/99#)%>
   RESULT: 4

FormatCurrency()
   FUNCTION: 返回表达式,此表达式已被格式化为货币值
   SYNTAX: FormatCurrency(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit>>>>)
   ARGUMENTS: Digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置;   

LeadingDigit 三态常数,指示是否显示小数值小数点前面的零。
   EXAMPLE: <%=FormatCurrency(34.3456)%>
   RESULT:
  • 上一篇资讯: ASP FSO文件处理函数大全
  • 下一篇资讯: 文章内页类
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号