asp 格式化时间日期

  asp教程 格式化时间日期

  public function formatdt(dt, style)

  'style=0 2000-10-10 下午 12:17:45

  'style=1 2000-10-10 23:17:45

  'style=2 2000-10-10 23:45

  'style=3 00-10-10 23:45

  'style=4 10-10 23:45

  'style=5 2000-10-10

  'style=6 00-10-10

  'style=7 10-10

  'style=8 23h-45m-45s

  'style=9 20001010231745

  'style=10 0510   上传图片

  'style=11 05年10月10日

  'style=12 05/10/12   上传图片

  dim nowdate, y, m, d, h, i, s, t, apm, hapm

  nowdate = dt

  y = year(nowdate)

  if len(y)=1 then y="0"&y

  m = month(nowdate)

  if len(m)=1 then m="0"&m

  d = day(nowdate)

  if len(d)=1 then d="0"&d

  h = hour(nowdate)

  if len(h)=1 then h="0"&h

  i = minute(nowdate)

  if len(i)=1 then i="0"&i

  s = second(nowdate)

  if len(s)=1 then s="0"&s

  if h > 12 then

  apm = "下午 "

  hapm = cstr(cint(h) mod 12)

  else

  apm = "上午 "

  hapm = h

  end if

  select case style

  case 0

  t = y & "-" & m & "-" & d & " " & apm & hapm & ":" & i & ":" & s

  case 1

  t = y & "-" & m & "-" & d & " " & h & ":" & i & ":" & s

  case 2

  t = y & "-" & m & "-" & d & " " & h & ":" & i

  case 3

  t = right(y, 2) & "-" & m & "-" & d & " " & h & ":" & i

  case 4

  t = m & "-" & d & " " & h & ":" & i

  case 5

  t = y & "-" & m & "-" & d

  case 6

  t = right(y, 2) & "-" & m & "-" & d

  case 7

  t = m & "-" & d

  case 8

  t = h & "h-" & i & "m-" & s &"s"

  case 9

  t = y & m & d & h & i & s

  case 10'上传

  t = right(y, 2) & m

  case 11

  t = right(y, 2) & "年" & m & "月" & d & "日"

  case 12

  t = right(y, 2) & "/" & m & "/" & d

  end select

  formatdt = t

  end function

时间: 2024-11-03 21:14:31

asp 格式化时间日期的相关文章

asp 格式化时间函数

asp教程 格式化时间函数 '本款函数可以根据用户给定的时间日期进行年月日,时分秒等,只要用户给定不同的style参数就可以显示不同风格的时间日期. function formattime(testtime,style) dim n,y,r,s,f,m n = year(testtime) y = month(testtime) r = day(testtime) s = hour(testtime) f = minute(testtime) m = second(testtime) if le

javascript 格式化时间日期函数代码脚本之家修正版_时间日期

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] javascript格式化日期时间函数_时间日期_http://www.jb51.net/article/14753.htm

JAVA格式化时间日期的简单实例_java

复制代码 代码如下: import java.util.Date;import java.text.DateFormat; /*** 格式化时间类* DateFormat.FULL = 0* DateFormat.DEFAULT = 2* DateFormat.LONG = 1* DateFormat.MEDIUM = 2* DateFormat.SHORT = 3* @author    Michael * @version   1.0, 2007/03/09*/ public class T

js 格式化时间日期函数小结_时间日期

复制代码 代码如下: Date.prototype.format = function(format){ var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+" : this.getMinutes(), //minute "s+" : this.g

js格式化时间日期程序代码

例1  代码如下 复制代码 /**  * 时间对象的格式化;  */ Date.prototype.format = function(format) {     /*      * eg:format="YYYY-MM-dd hh:mm:ss";      */     var o = {         "M+" :this.getMonth() + 1, // month         "d+" :this.getDate(), // d

php Smarty date_format [格式化时间日期]_php技巧

Example 5-8. date_format[日期格式] index.php: 复制代码 代码如下: $smarty = new Smarty; $smarty->assign('yesterday', strtotime('-1 day')); $smarty->display('index.tpl'); index.tpl: {$smarty.now|date_format} {$smarty.now|date_format:"%A, %B %e, %Y"} {$s

asp 计算时间日期

  Public Function TimeToDiff(DateTime)   If IsDate(DateTime) Then    Dim tSecond:tSecond=DateDiff("s",DateTime,Now())    If tSecond<60 Then'//一分钟内     TimeToDiff="刚刚"    End If    If tSecond>=60 And tSecond<3600 Then'//一小时内   

asp格式化日期时间格式的代码_应用技巧

' ============================================ ' 格式化时间(显示) ' 参数:n_Flag ' 1:"yyyy-mm-dd hh:mm:ss" ' 2:"yyyy-mm-dd" ' 3:"hh:mm:ss" ' 4:"yyyy年mm月dd日" ' 5:"yyyymmdd" ' =========================================

asp格式化日期时间格式的代码

' ============================================ ' 格式化时间(显示) ' 参数:n_Flag ' 1:"yyyy-mm-dd hh:mm:ss" ' 2:"yyyy-mm-dd" ' 3:"hh:mm:ss" ' 4:"yyyy年mm月dd日" ' 5:"yyyymmdd" ' =========================================