日期:2010-08-06  浏览次数:20725 次

   Rnd() 
   
  函数产生一个随机数. 
   
  表达式 Rnd [ (number) ] 
   
  实例: <% 
   
  Randomize() 
  response.write RND() 
   
  %> 
   
  返回结果: 任何一个在0 到 1 之间的数 
   
   
  Round() 
   
  函数返回按指定位数进行四舍五入的数值. 
   
  表达式 Round(expression [, numRight]) 
   
  实例: <% 
   
  i = 32.45678 
   
  response.write Round(i) 
   
  %> 
   
  返回结果: 32 
   
   
  Rtrim() 
   
  函数去掉字符串右边的字符串. 
   
  表达式 Rtrim(string) 
   
  实例: <% 
   
  strTest = "This is a test!! " 
   
  response.write RTrim(strTest) 
   
  %> 
   
  返回结果: This is a test!! 
   
   
  Split() 
   
  函数将一个字符串分割并返回分割结果 
   
  表达式 Split (S[,d]) 
   
  实例:<%V= Split(A,B,C) 
   
  For i = 0 To UBound(V) 
   
  Response.Write V(i) 
   
  Next 
   
  %> 
   
  返回结果: A B C 
   
   
  Second() 
   
  函数返回秒. 
   
  表达式 Second(time) 
   
  实例: <%=Second(#12:34:28 PM#)%> 
   
  返回结果: 28 
   
   
  StrReverse() 
   
  函数反排一字符串 
   
  表达式 StrReverse(string) 
   
  实例: <% 
   
  strTest = "This is a test!!" 
   
  response.write StrReverse(strTest) 
   
  %> 
   
  返回结果: !!tset a si sihT 
   
   
  Time() 
   
  函数返回系统时间. 
   
  表达式 Time() 
   
  实例: <%=Time%> 
   
  返回结果: 9:58:28 AM 
   
   
  Trim() 
   
  函数去掉字符串左右的空格. 
   
  表达式 Trim(string) 
   
  实例: <% 
   
  strTest = " This is a test!! " 
   
  response.write Trim(strTest) 
   
  %> 
   
  返回结果: This is a test!! 
   
   
  UBound() 
   
  函数返回指定数组维数的最大可用下标>. 
   
  表达式 Ubound(arrayname [, dimension]) 
   
  实例: <% 
   
  i = Array("Monday","Tuesday","Wednesday") 
   
  response.write UBound(i) 
   
  %> 
   
  返回结果: 2 
   
   
  UCase() 
   
  函数返回字符串的大写形式. 
   
  表达式 UCase(string) 
   
  允许数据类型: 
   
  实例: <% 
   
  s