本文介绍了如何获得在asp.net中的previous月日的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要得到previous月日期asp.net这意味着,如果当前日期是2013年5月2日,然后我想显示的previous日期2013年5月1日。如何解决此问题?

I need to get the previous months date in asp.net which means that if the current date is 5/2/2013 then I want to display the previous date as 5/1/2013. How to solve this?

推荐答案

试试这个:

DateTime d = DateTime.Now;
d = d.AddMonths(-1);

这篇关于如何获得在asp.net中的previous月日的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 04:54