ASP中格式化时间短日期补0变两位长日期的方法
网络编程 2021-07-05 10:58www.168986.cn编程入门
这篇文章主要介绍了ASP中格式化时间短日期补0变两位长日期的方法,需要的朋友可以参考下
因为短日期不足2位,所以在网页排版的时候,影响美观,狼蚁网站SEO优化两个函数可以解决这个问题。
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的资料请关注狼蚁SEO其它相关文章!
编程语言
- 宿迁百度关键词排名指南:实现精准营销的关键
- 四川SEO优化怎么做网络推广
- 立昂技术备案老域名收购:如何为您的业务赋能
- 安徽百度关键词seo贵不贵,一般需要多少钱
- 吉林百度快照排名怎么做电话营销
- 多伦新手做SEO怎么做
- 甘肃优化关键词排名推广怎么做论坛营销
- 沙雅SEO网站推广:提升您的在线可见性
- 四川SEO优化如何提升销售额和销售量
- 聂荣网站排名优化:提升网站可见性的全方位指
- 涞水SEO:提升地方企业在线可见性的策略
- 辽宁百度seo排名怎样做网站排名
- 临湘哪有关键词排名优化:提升网站可见度的关
- 黑龙江百度网站优化有没有优惠
- 凉城优化关键词排名推广:提升您的网络可见性
- 萝北整站优化:提升您网站流量和排名的全面指