如何使用 ASP VB 格式化日期时间 - 删除秒
我使用的代码如下:
dateadd("n",FTimeZoneDifference,theTime)
Which returns me the date time as MM/dd/yyyy hh:mm:ss ttt
(ttt 表示 AM 或 PM)
我只想删除秒,可能吗?
I am using the code like
dateadd("n",FTimeZoneDifference,theTime)
Which returns me the date time as MM/dd/yyyy hh:mm:ss ttt
(ttt is for AM or PM)
I want to remove seconds only, is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以构建自己的字符串,因为经典 ASP 没有满足您需要的内置函数:
You can build your own string, as classic ASP has no built in functions for what you need:
您可能必须自己动手。您可以像影子向导显示那样,或者像这样的替代版本:
Shadow Wizard 的好处是您可以更好地控制输出,其中该版本更依赖于系统的短日期和短时间设置。
You probably are going to have to roll your own. You can do like Shadow Wizard shows, or an alternate version like this:
The benefit to Shadow Wizard's is you have more control over the output, where this version is more dependent on the system's setting for short date and short time.