动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > ASP实例
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ ASP实例 ]的信息

本月文章推荐
.用户注册及跟踪代码(三).
.磁盘ID在ASP源码防拷贝中的应用.
.ASP环境下邮件列表功能的实现 (.
.深入讲解 ASP+ 验证(二).
.ASP 编程中 15 个非常有用的例子.
.模拟QQ的下拉列表选择图象.
.使用xmlhttp为网站增加股市行情查.
.无组件实现文件上传/下载.
.上传的进度条 实时反映上传情况.
.无组件的数据库的备份与还原.
.制作我们自己的Ebay(拍卖系统)(6).
.控制输出字符串的长度,可以区别.
.对一篇很长的文章做到完美的分页.
.用ASP统计用户在站点的停留时间.
.一个BBS的源代码(六).
.调用DirectX的组件实现的时钟.
.用asp怎样编写文档搜索页面(1).
.使用ASP建设私人搜索引擎.
.在ASP中改善动态分页的性能.
.实例演练ASP+XML编程(1).

ASP中的函数应用方法及应用举例(二)

发表日期:2000-8-25 |


21. IsObject()
  FUNCTION: Returns a boolean value indicating whether an expression refers to an automation object.
  SYNTAX: IsObject(expression)
  ARGUMENTS: expression is any valid expression.
  EXAMPLE: <%
Set con = Server.CreateObject("ADODB.Connection")
response.write IsObject(con)
%>
  RESULT: True
-------------------------------------
  
22. LBound()
  FUNCTION: Returns the base index value for a dimension of any array.
  SYNTAX: Lbound(arrayname [, dimension])
  ARGUMENTS: arrayname is the name of any array; dimension is an optional number indicating the dimension
to find the lower bound.
  EXAMPLE: <%
i = Array("Monday","Tuesday","Wednesday")
response.write LBound(i)
%>
  RESULT: 0
-------------------------------------
  
23. LCase()
  FUNCTION: Returns a string that has been converted into lowercase characters.
  SYNTAX: Lcase(string)
  ARGUMENTS: string is any valid string expression.
  EXAMPLE: <%
strTest = "This is a test!"
response.write LCase(strTest)
%>
  RESULT: this is a test!
-------------------------------------
  
24. Left()
  FUNCTION: Returns the number of characters from the left side of a string.
  SYNTAX: Left(string, length)
  ARGUMENTS: string is any valid string expression; length is the length of characters to return.
  EXAMPLE: <%
strTest = "This is a test!"
response.write Left(strTest, 3)
%>
  RESULT: Thi
-------------------------------------
  
25. Len()
  FUNCTION: Returns the number of characters in a string or the number of bytes required to store a
variable.
  SYNTAX: Len(string | varName)
  ARGUMENTS: string is any valid string expression; varName is any valid variable name.
  EXAMPLE: <%
strTest = "This is a test!"
response.write Len(strTest)
%>
  RESULT: 15
(The total length of strTest is 15 characters)
26.  
LTrim()
  FUNCTION: Returns a string without leading spaces.
  SYNTAX: LTrim(string)
  ARGUMENTS: string is any valid string expression.
  EXAMPLE: <%
strTest = " This is a test!"
response.write LTrim(strTest)
%>
  RESULT: This is a test!
-------------------------------------
  
27. Mid()
  FUNCTION: Returns a specified number of characters from a string.
  SYNTAX: Mid(string, start [, length])
  ARGUMENTS: string is any valid string expression; start is a numeric character position to begin
extraction from; length (optional) is the number of characters to return.
  EXAMPLE: <%
strTest = "This is a test! Today is Monday."
response.write Mid(strTest, 17, 5)
%>
  RESULT: Today
-------------------------------------
  
28. Minute()
  FUNCTION: Returns the number of the minutes in current system time.
  SYNTAX: Minute(time)
  ARGUMENTS: time is any valid time expression.
  EXAMPLE: <%=Minute(#12:45:32 PM#)%>
  RESULT: 45
-------------------------------------
  
29. Month()
  FUNCTION: Returns the number of the month of the year.
  SYNTAX: Month(date)
  ARGUMENTS: date is any valid date expression.
  EXAMPLE: <%=Month(#08/04/99#)%>
  RESULT: 8
-------------------------------------
  
30. MonthName()
  FUNCTION: Returns a string identifying the specified month.
  SYNTAX: MonthName(month, [, Abb])
  ARGUMENTS: 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.
  EXAMPLE: <%=MonthName(Month(#08/04/99#))%>
  RESULT: August
-------------------------------------
  
31. Now()
  FUNCTION: Returns the current system date and time.
  SYNTAX: Now()
  ARGUMENTS: None
  EXAMPLE: <%=Now%>
  RESULT: 8/4/99 9:30:16 AM
-------------------------------------
  
32. Replace()
  FUNCTION: Returns a string in which a specified sub-string has been replaced with another substring a
specified number of times.
  SYNTAX: Replace(strToBeSearched, strSearchFor, strReplaceWith [, start [, count [, compare]]])
  ARGUMENTS: 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.
  EXAMPLE: <%
strTest = "This is an apple!"
response.write Replace(strTest, "apple", "orange")
%>
  RESULT: This is an orange!
-------------------------------------
  
33. Right()
  FUNCTION: Returns a specified number of characters from the right side of a string.
  SYNTAX: Right(string, length)
  ARGUMENTS: string is any valid string expression; length is any valid numeric expression representing
the number of characters to return.
  EXAMPLE: <%
strTest = "This is an test!"
response.write Right(strTest, 3)
%>
  RESULT: st!
-------------------------------------
  
34. Rnd()
  FUNCTION: Returns a random number.
  SYNTAX: Rnd [ (number) ]
  ARGUMENTS: number is any valid numeric expression.
  EXAMPLE: <%
Randomize()
response.write RND()
%>
  RESULT: Any number between 0 and 1
(Without Randomize(), the number will not re-generate)
  
Round()
  FUNCTION: Returns a number rounded to a specified number of decimal places.
  SYNTAX: Round(expression [, numRight])
  ARGUMENTS: expression is any valid numeric expression to be rounded; numRight (optional) is any numeric
expression used to indicate the number of digits to the right of the decimal point.
  EXAMPLE: <%
i = 32.45678
response.write Round(i)
%>
  RESULT: 32
-------------------------------------
  
35. Rtrim()
  FUNCTION: Returns a copy of a string without trailing spaces.
  SYNTAX: Rtrim(string)
  ARGUMENTS: string is any valid string expression.
  EXAMPLE: <%
strTest = "This is a test!! "
response.write RTrim(strTest)
%>
  RESULT: This is a test!!
-------------------------------------
  
36. Second()
  FUNCTION: Returns the current seconds value of the current system time.
  SYNTAX: Second(time)
  ARGUMENTS: time is any valid time expression.
  EXAMPLE: <%=Second(#12:34:28 PM#)%>
  RESULT: 28
-------------------------------------
  
37. StrReverse()
  FUNCTION: Returns a string where the character order has been reversed
  SYNTAX: StrReverse(string)
  ARGUMENTS: string is any valid string expression
  EXAMPLE: <%
strTest = "This is a test!!"
response.write StrReverse(strTest)
%>
  RESULT: !!tset a si sihT
-------------------------------------
  
38. Time()
  FUNCTION: Returns the current system time.
  SYNTAX: Time()
  ARGUMENTS: None.
  EXAMPLE: <%=Time%>
  RESULT: 9:58:28 AM
-------------------------------------
  
39. Trim()
  FUNCTION: Returns a string without leading and trailing spaces.
  SYNTAX: Trim(string)
  ARGUMENTS: string is any valid string expression.
  EXAMPLE: <%
strTest = " This is a test!! "
response.write Trim(strTest)
%>
  RESULT: This is a test!!
-------------------------------------
  
40. UBound()
  FUNCTION: Returns the largest available subscipt for a dimension of an array.
  SYNTAX: Ubound(arrayname [, dimension])
  ARGUMENTS: arrayname is the name of a valid array; dimension (optional) is a number indicating the
dimension to find the upper bound.
  EXAMPLE: <%
i = Array("Monday","Tuesday","Wednesday")
response.write UBound(i)
%>
  RESULT: 2
(array index starts with 0)
-------------------------------------
  
41. UCase()
  FUNCTION: Returns a string that has been converted to uppercase characters.
  SYNTAX: UCase(string)
  ARGUMENTS: string is any valid string expression.
  EXAMPLE: <%
strTest = "This is a test!!"
response.write UCase(strTest)
%>
  RESULT: THIS IS A TEST!!
-------------------------------------
  
42. VarType()
  FUNCTION: Returns the subtype of a variable
  SYNTAX: VarType(varName)
  ARGUMENTS: varName is the required variable name
  EXAMPLE: <%
i = 3
response.write varType(i)
%>
  RESULT: 2
(2 indicates Integer. Refers to ASP Constants)
-------------------------------------
  
43. WeekDay()
  FUNCTION: Returns a whole number representing the day of the week.
  SYNTAX: WeekDay(date [, firstdayofweek])
  ARGUMENTS: date is any valid date expression; firstdayofweek is an optional date constant to assign the
first day of week.
  EXAMPLE: <%
d = #8/4/99#
response.write Weekday(d)
%>
  RESULT: 4
(4 indicates the fourth of the week, which is Wednesday)
-------------------------------------
  
44. WeekDayName()
  FUNCTION: Returns the specified day of the week.
  SYNTAX: WeekDayName(weekday [, Abb [, firstdayofweek]])
  ARGUMENTS: weekday is the numeric representation for the day of the week; Abb is an optional boolean
value (if set to true, the weekday name will be abbreviated; if set to false, the full weekday name is
displayed); and firstdayofweek is an optional date constant to assign the first day of week.
  EXAMPLE: <%
d = #8/4/99#
response.write WeekdayName(Weekday(d))
%>
  RESULT: Wednesday
-------------------------------------
  
45. Year()
  FUNCTION: Returns the current year.
  SYNTAX: Year(date)
  ARGUMENTS: date is any valid date expression.
  EXAMPLE: <%=Year(#8/4/99#)%>
  
上一篇:ASP中的函数应用方法及应用举例(一) 人气:12062
下一篇:完整的访问统计系统(一:数据库篇) 人气:12092
浏览全部ASP中的函数应用方法及应用举例的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-9-6 Movie34电影搜索引擎 v3.0
2008-9-6 wap2.0仿帝国建站喜用 v2.0
2008-9-6 免费人才招聘网 宽屏版 v3.01
2008-9-6 喜喔喔视频采集程序 v1.0 beta
2008-9-6 ASP客户管理系统
2008-9-6 主流驿站中秋祝福程序
2008-9-6 php实现msn协议的类
2008-9-5 Coppermine Photo Gallery v1.4.
2008-9-5 清松网络日记本 v2.4
2008-8-23 Mini WinMount V0.4
2008-8-23 Vista优化大师3.11正式版
2008-8-23 Wine 1.13
2008-8-23 KlipFolio 5.0 Build 5899-80
2008-8-23 Windows Sysinternals Desktops
2008-8-23 OneTap Movies1.2破解版
2008-8-23 AnnotaterPDF阅读1.1.503 破解版
2008-8-23 SoundMeter分贝测量仪 v1.0汉化破
2008-8-23 iDrum音乐节拍1.0破解版
  发表评论
姓 名: 验证码:
内 容:
站长工具:网站收录查询 | Google PR查询 | ALEXA排名查询 | CSS在线编辑器 | 广告代码 | Html转换js | js/vbs加密 | md5加密 | 进制转换
实用工具:汉字翻译拼音 | 符号对照表 | 个税计算 | 经典小工具 | 汉字简繁转换 | 普通单位换算 | 公制单位换算 | 生辰老黄历 | 国内电话区号 国家代码与域名缩写 | 文字加密解密 | 健康查询 | 万年历 | 汉字横竖排版 | 手机号码查询 | 计算器 | ip搜索
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号