ASP中格式化时间短日期补0变两位长日期的方法

所属分类: 网络编程 / ASP编程 阅读数: 1207
收藏 0 赞 0 分享

因为短日期不足2位,所以在网页排版的时候,影响美观,下面两个函数可以解决这个问题。

2020-2-7短日期 变 2020-02-07长日期

Function FStime(times)
  Dim years,months,days
   if len(times)=0 then exit function
   years=year(times)
   months=right("0"&month(times),2)
   days=right("0"&day(times),2)
   times=years&"-"&months&"-"&days
   FStime=times
End Function

2020-2-7 23:37:5短日期 变 2020-02-07 23:37:05长日期

Function FLtime(times)
  Dim years,months,days,hours,minutes,seconds
   if len(times)=0 then exit function
   years=year(times):months=right("0"&month(times),2)
   days=right("0"&day(times),2):hours=right("0"&hour(times),2)
   minutes=right("0"&minute(times),2):seconds=right("0"&second(times),2)
   FLtime=years&"-"&months&"-"&days&" "&hours&":"&minutes&":"&seconds
End Function

Pw_Sys 日期格式转换函数

<%

Rem Pw_Sys 日期格式转换函数

function DateTimeFormat(DateTime,Format)
select case Format
case "1"
DateTimeFormat=""&year(DateTime)&"年"&month(DateTime)&"月"&Right("0" & Day(DateTime),2)&"日"
case "2"
DateTimeFormat=""&month(DateTime)&"月"&Right("0" & Day(DateTime),2)&"日"
case "3"
DateTimeFormat=""&year(DateTime)&"-"&month(DateTime)&"-"&Right("0" & Day(DateTime),2)&""
case "4"
DateTimeFormat=""&year(DateTime)&"/"&month(DateTime)&"/"&Right("0" & Day(DateTime),2)&""
case "5"
DateTimeFormat=""&month(DateTime)&"/"&Right("0" & Day(DateTime),2)&""
case "6"
DateTimeFormat=""&year(DateTime)&"年"&month(DateTime)&"月"&Right("0" & Day(DateTime),2)&"日<font color=red> "&FormatDateTime(DateTime,4)&"</font>"
case "7"
  temp="星期日,星期一,星期二,星期三,星期四,星期五,星期六"
  temp=split(temp,",")
  DateTimeFormat=temp(WeekRight("0" & Day(DateTime),2)-1)
case "8"
DateTimeFormat=""&month(DateTime)&"-"&Right("0" & Day(DateTime),2)&""
case "9"
if len(hour(DateTime)) = 1 then
str="0"&hour(DateTime)
else
str=hour(DateTime)
end if
DateTimeFormat=DateTimeFormat(DateTime,1)&" "&str&":"&Minute(DateTime)
case "10"
DateTimeFormat=""&year(DateTime)&"年"&month(DateTime)&"月"
case else
DateTimeFormat=DateTime
end select
end function

%>

程序代码(把yyyy-mm-dd格式的日期中的月份和日期转换成两位数字的方法)

dim today
today=Date '避免重复调用Date,所以赋值给一个变量
today=Year(today) & "-" & Right("0" & Month(today),2) & "-" & Right("0" & Day(today),2)

asp中一段自动补位的函数

function formatsn(getnum,getbit)
dim formatsnnum,formatsnpre,formatsnj
formatsnnum = getbit – len(getnum)
for formatsnj = 1 to formatsnnum
formatsnpre = formatsnpre & "0"
next
formatsn = formatsnpre & getnum
end function

使用方法

formatsn(getnum,getbit)

getnum 计数
getbit 共几位

以上就是ASP中格式化时间短日期补0变两位长日期的方法的详细内容,更多关于ASP短日期补0的资料请关注脚本之家其它相关文章!

更多精彩内容其他人还在看

asp 批量删除选中的多条记录的实现代码

如果需要删除记录,一条一条的删比较耗时,所以批量删除记录是个不错的功能,原理就是利用asp数组来实现。
收藏 0 赞 0 分享

ASP 使用Filter函数来检索数组的实现代码

在VBScript中有Filter这个函数可以用来对数组进行过滤,并返回原数组的一个子集数组。
收藏 0 赞 0 分享

ASP JSON类源码分享

ASP JSON类源码分享,需要的朋友可以参考下。
收藏 0 赞 0 分享

ASP JSON类文件的使用方法

前段时间开始学习JSON在ASP中的使用,JSON确实比XML方便。以前在写程序的时候有考虑使用XML来存储数据,但是一直觉得生成文档及文档的调用查询等都很麻烦。
收藏 0 赞 0 分享

Asp中Server.ScriptTimeOut属性需要注意的一点分析

Server.ScriptTimeout 这个属性给定Asp脚本执行的最大时间,如果asp程序的运行时间超过了这个属性规定的值,Asp就会报错。
收藏 0 赞 0 分享

从一个网站扒下的asp生成静态页面的代码 脚本之家特供版

虽然脚本之家以前发布过相关的代码,但一些特别的网站不是很完美,最近帮客户修改系统发现了这段代码,发现还不错,特提取出来,方便大家使用。
收藏 0 赞 0 分享

asp CutStrX字符串截取函数(过滤全部HTML标记)

asp CutStrX字符串截取函数(过滤全部HTML标记),比较不错,需要的朋友可以参考下。
收藏 0 赞 0 分享

ASP Eval、Execute、ExecuteGlobal区别分析

Eval、Execute、ExecuteGlobal 这三个语句(函数)都是执行字符串表达式,不过它们之间又有所不同。
收藏 0 赞 0 分享

使用innerHTML时注意处理空格和回车符(asp后台处理)

innerHTML中如果包含空格和回车都会被认为是段落的结束,造成程序运行出错,解决办法,输出的时候将空格和回车替换掉,方便js调用。
收藏 0 赞 0 分享

ASP网站出现 msxml3.dll 错误  80072ee7 错误的解决方法

这两天接到通知,说公司的一个网站访问不了,经访问发现页面提示如下错误
收藏 0 赞 0 分享
查看更多