gpt4 book ai didi

javascript - 如何从asp.net c#中选定的日期获取上个月的日期

转载 作者:行者123 更新时间:2023-11-28 05:14:38 24 4
gpt4 key购买 nike

所选日期为 (txtfromdate):2016 年 12 月 1 日

截止日期:(txttodate):2016 年 12 月 31 日

如何用 C# 或 JavaScript 计算 2016 年 12 月 1 日到 2016 年 12 月 31 日。

最佳答案

DateTime firstOfDecember = new DateTime(2016, 12, 1);
int lastDay = DateTime.DaysInMonth(firstOfDecember.Year, firstOfDecember.Month);

如果您想创建相当于该月最后一天的 DateTime 对象:

DateTime lastOfDecember = new DateTime(firstOfDecember.Year, firstOfDecember.Month, lastDay);

使用DateTimeDaysInMonth方法:DateTime.DaysInMonth Method (Int32, Int32)

关于javascript - 如何从asp.net c#中选定的日期获取上个月的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41075044/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com