软件下载 无忧学院 最近更新 精品推荐 栏目导航 下载排行 百度收录查询 ·设为主页 ·收藏本站 ·会员中心
无忧源码网
首页ASP源码PHP源码.NET源码JSP源码CGI源码FLASH源码网络软件图形图像系统工具编程开发黑客专区
热门搜索: 雨杰YJCMS 源码下载 新云CMS 动易CMS 源码之家 动网论坛 ASP源码网 风讯CMS 网站源码 DedeCms ASP源码下载 科汛CMS 论坛源码

通过实例讲解来学习ASP中的函数

作者:佚名    文章来源:无忧源码收集整理    点击数:    更新时间:2007-8-11
his is a test!" response.write Left(strTest, 3) %>

结果: Thi

Len()

作用: 返回字符串的长度.
   语法: Len(string | varName)
  说明:

<%  strTest =   "This is a test!"  response.write Len(strTest)  %>  

结果: 15

LTrim()

作用: 去掉字符串左边的空格.
   语法: LTrim(string)
  说明:

<%  strTest =   " This is a test!"  response.write LTrim(strTest)  %>  

结果: This is a test!

Mid()

作用: 返回特定长度的字符串(从start开始,长度为length).
   语法: Mid(string, start [, length >)
  说明:

<%  strTest =   "This is a test! Today is Monday."  response.write Mid(strTest, 17, 5)  %>  

结果: Today

Minute()

作用: 返回时间的分钏.
   语法: Minute(time)
  说明:

<%=Minute(#12:45:32 PM#)%>

结果: 45

Month()

作用: 返回日期.
   语法: Month(date)
  说明: date is any valid date expression.

<%=Month(#08/04/99#)%>

结果: 8

MonthName()

作用: Returns a string identifying the specified month.
   语法: MonthName(month, [, Abb >)
   说明: 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.

<%=MonthName(Month(#08/04/99#))%>

结果: August

Now()

作用: Returns the current system date and time.返回当前系统时间
   语法: Now()
  说明: None

<%=Now%>

结果: 8/4/99 9:30:16 AM

Replace()

作用: Returns a string in which a specified sub-string has been replaced with another substring a specified number of times.
   语法: Replace(strToBeSearched, strSearchFor, strReplaceWith [, start [, count [, compare >>>)
   说明: strToBeSearched is a string expression containing a sub-string to be replaced; strSearchFor is the string expression to search for within strToBeSearched

上一页  [1] [2] [3] [4] [5] [6] 下一页

  • 上一篇文章: 没有了

文章评论

只显示最新5条。评论内容只代表网友观点,与本站立场无关!查看完整内容

源码下载 ASP源码网 源码之家 网站源码 论坛源码

© CopyRight 2006-2007, 5UYM.COM, Inc. All Rights Reserved 京ICP备07028154号