How can you show the date in a gridview as a date only instead of a datetime?

前端 未结 10 1422
粉色の甜心
粉色の甜心 2021-02-04 01:22

I am pulling in date values from a sql server database using a gridview and and the date gets converted from

12/12/2009 to 12/12/2009 12:

10条回答
  •  时光说笑
    2021-02-04 01:52

    when you select the field from the database you can convert it to a string in the select as:

    convert(varchar, myDate, 101)
    

提交回复
热议问题