DJ메탈짱™의 Free Style

[ASP.NET] 해당월 시작일 구하기 (DateTime) 본문

일(job)/MS(Microsoft)

[ASP.NET] 해당월 시작일 구하기 (DateTime)

뽀&쏭 2015. 12. 3. 13:30



 

기준일 : 2007년12월18일

 

// 3개월 전 해당월의 시작일

this.TextBox1.Text =

new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1). AddMonths(-3).ToShortDateString();

결과 값 : 2007-09-01

 

// 현재월의 시작일

this.TextBox1.Text =

new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1).ToShortDateString();

결과값 : 2007-12-01