如何仅在vb.net中显示日期

时间:2013-12-20 09:21:00

标签: sql vb.net

我只需要在vb.net中显示日期。这些是我经历的步骤。

  1. 将日期添加到sql数据库。 (sql数据库显示2013-12-13)
  2. 创建了一个表来查看它。 (显示12/13/2013 12:00:00 AM)
  3. 我使用的方法是:

    <%=Formatdatetime(f_purchasedate,2)%>
    <%=FormatDateTime(f_purchasedate, "Short Date")%>
    <%Response.Write(FormatDateTime(f_purchasedate, 2))%>
    

    请帮忙。感谢

    编辑:看错了地方。这&lt;%= Formatdatetime(f_purchasedate,2)%&gt;作品。感谢帮助人员

2 个答案:

答案 0 :(得分:1)

试试这个

<%=Formatdatetime(f_purchasedate,2)%>
<%=FormatDateTime(f_purchasedate, "Short Date")%>
<%Response.Write(FormatDateTime(f_purchasedate, DateFormat.ShortDate))%>

OR

 <%Response.Write(f_purchasedate.ToString("yyyy-MM-dd")))%>

答案 1 :(得分:0)