月初的第一天:
System.DateTime.Today.AddDays(1 - System.DateTime.Today.Day);
月末的最后一天 :
System.DateTime.Now.AddDays(1 - System.DateTime.Now.Day).AddMonths(1).AddDays(-1);
获取当前月的首日、末日
原文:http://blog.csdn.net/jiankunking/article/details/18442789