本文介绍了本月的第一天和结束日的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在文本框中,我输入2015年1月或2015年1月的月份名称。
如何获得该月的第一个日期和结束日期?
In textbox I enter name of month like JAN 2015 or JANUARY 2015.
How can I get first date and end day of the month?
推荐答案
Dim dt As DateTime = DateTime.Now
TextBox1.Text = dt.Date
TextBox2.Text = Format(dt.AddDays(-(dt.Day - 1)), "MM/dd/yyyy")
Dim LastdayDate As Date = dt.AddMonths(1)
TextBox3.Text = Format(LastdayDate.AddDays(-(LastdayDate.Day)), "MM/dd/yyyy")
试一试
try it
这篇关于本月的第一天和结束日的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!