Asp.Net中需要从当前日期开始的上个月的第一天和下个月的最后一天 例如:当前日期02/12/2019 上个月的第一天= 2019年11月11日 下个月的最后一天= 2020年1月31日
答案 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">
<img alt="2" src="/assets/star-off.png" title="poor">
<img alt="3" src="/assets/star-off.png" title="regular">
<img alt="4" src="/assets/star-off.png" title="good">
<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);