How to get current date in 'YYYY-MM-DD' fo

2020-06-07 07:05发布

问题:

How to get current date in 'YYYY-MM-DD' format in ASP.NET ?

回答1:

Which WebControl are you using? Did you try?

DateTime.Now.ToString("yyyy-MM-dd");


回答2:

The ToString method on the DateTime struct can take a format parameter:

var dateAsString = DateTime.Now.ToString("yyyy-MM-dd");
// dateAsString = "2011-02-17"

Documentation for standard and custom format strings is available on MSDN.



回答3:

<%= DateTime.Now.ToString("yyyy-MM-dd") %>



回答4:

try ToString method for your desirer format use

DateTime.Now.ToString("yyyy-MM-dd"); 


OR you can use it with your variable of DateTime type

dt.ToString("yyyy-MM-dd");


where dt is a DateTime variable



回答5:

Might be worthwhile using the CultureInfo to apply DateTime formatting throughout the website. Insteado f running around formatting whever you have to.

CultureInfo.CurrentUICulture.DateTimeFormat.SetAllDateTimePatterns( ...

or

CultureInfo.CurrentUICulture.DateTimeFormat.ShortDatePattern = "yyyy-MM-dd"; 

Code should go somewhere in your Global.asax file

protected void Application_Start(){ ...


回答6:

var formatedDate = DateTime.Now.ToString("yyyy-MM-dd",System.Globalization.CultureInfo.InvariantCulture);

To ensure the user's local settings don't affect it



回答7:

<%: DateTime.Today.ToShortDateString() %>