Several methods of time formatting in Asp.net

Source: Internet
Author: User

1. Date formatting method when data control is bound:
<Asp: boundcolumn datafield = "addtime" headertext = "add time" dataformatstring = "{0: yyyy-mm-dd hh: mm}> </ASP: boundcolumn>
<Asp: boundfield datafield = "addtime" headertext = "add time" dataformatstring = "{0: yyyy-mm-dd}"/>

2. When using databinder. eval for Data Binding:
Databinder. eval (container. dataitem, "addtime", "{0: yyyy-mm-dd }")

3. Use the tostring method to convert the date display format:
Datetime. Now. tostring ("yyyy-mm-dd hh: mm: SS ")

4. Convert the date display format with the string type:
String. Format ("{0: yyyy-mm-dd}", datetime. Now)

5. Convert the date display format using the datetime. parse Method
Datetime. parse ("2012-2-22"). tostring ("yyyy-mm-dd ")

6. Convert the date display format using convert. todatetime:
Convert. todatetime ("2012-12-21"). tostring ("yyyy-mm-dd ")

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.