Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用 Windows 调度程序自动运行的 VB.Net 程序。该程序运行一个存储过程并通过电子邮件发送数据集的结果......我想做的是发送“日期和时间”作为日期和时间,但添加一个小时(时间目前在中央,我需要东方的结果)。
<td><%= Convert.ToDateTime(paidOut.Paid_Out_Datetime).ToString("M/d/yy") %>
如何操作上面的代码将其转换为 8/8/12 6:30(它在数据库中为 8/8/12 5:30)
<td><%= Convert.ToDateTime(paidOut.Paid_Out_Datetime).AddHours(1).ToString("M/d/yy") %>