从Asp.Net中的当前日期起需要上个月的第一天和下个月的最后一天

时间:2019-12-02 05:00:39

标签: asp.net

Asp.Net中需要从当前日期开始的上个月的第一天和下个月的最后一天 例如:当前日期02/12/2019 上个月的第一天= 2019年11月11日 下个月的最后一天= 2020年1月31日

2 个答案:

答案 0 :(得分:0)

<a style="text-decoration: none;" href="/books/5/rating_book?rate=5">
     <div id="rating" data-score="1" onclick="getScore();" style="cursor: pointer;">
     <img alt="1" src="/assets/star-on.png" title="bad">&nbsp;
     <img alt="2" src="/assets/star-off.png" title="poor">&nbsp;
     <img alt="3" src="/assets/star-off.png" title="regular">&nbsp;
     <img alt="4" src="/assets/star-off.png" title="good">&nbsp;
     <img alt="5" src="/assets/star-off.png" title="gorgeous">
     <input name="score" type="hidden" value="1"></div>
</a>

答案 1 :(得分:0)

您可能必须参考DataTime C#以获得更多信息

请尝试下面的代码行:

 DateTime lastMonthdate = DateTime.Now.AddMonths(-1);
 var lastMonth = new DateTime(lastMonthdate.Year, lastMonthdate.Month, 1);
 var lastDayOfNextMonth = lastMonth.AddYears(1).AddMonths(1).AddDays(-1);