如何使用 ASP VB 格式化日期时间 - 删除秒

发布于 2024-11-04 13:10:42 字数 200 浏览 0 评论 0原文

我使用的代码如下:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿! 2024-11-11 13:10:42

您可以构建自己的字符串,因为经典 ASP 没有满足您需要的内置函数:

myDate = dateadd("n", FTimeZoneDifference, theTime)
myString = Month(myDate) & "/" & Day(myDate) & "/" & Year(myDate) & " " ...

You can build your own string, as classic ASP has no built in functions for what you need:

myDate = dateadd("n", FTimeZoneDifference, theTime)
myString = Month(myDate) & "/" & Day(myDate) & "/" & Year(myDate) & " " ...
黯淡〆 2024-11-11 13:10:42

您可能必须自己动手。您可以像影子向导显示那样,或者像这样的替代版本:

myDate = dateadd("n", FTimeZoneDifference, theTime)
myString = FormatDateTime(myDate,vbShortDate) & " " & FormatDateTime(myDate,vbShortTime)

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:

myDate = dateadd("n", FTimeZoneDifference, theTime)
myString = FormatDateTime(myDate,vbShortDate) & " " & FormatDateTime(myDate,vbShortTime)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文