一年中一个月的开始和结束日期
问题描述:
我是这个网站的新手.
谁能解释我如何选择任何一年的月份的开始和结束日期,而无需在asp.net中使用日历?
I am new to this site.
Can anyone explain me how to select start and end date of a month, for any year, without using calendar in asp.net?
答
尝试使用此链接>
第一天本月的最后一天 [
try this link
First day And Last Day of the Month[^]
开始日期始终为1st
对于任何月份的最后一个日期,请取下个月的1号,然后减去一天.
Start date is always 1st
For the last date of any month, take the 1st of next month and deduct one day.
我已经在数据库中完成了此操作,-
I have done this in Database,-
DAY(DATEADD(s, - 1, DATEADD(mm, DATEDIFF(m, 0, DatetimeField) + 1, 0)))
希望对您有所帮助.
Hope this can help you.