如何只在asp.net中显示时间?

时间:2013-04-13 17:24:38

标签: asp.net vb.net time

这是我现在的代码:

Sub Page_Load
    lbl1.Text="The date and time is " & now()
End Sub

我想修改now()以仅显示没有日期的时间。我该怎么做?

1 个答案:

答案 0 :(得分:1)

应该是

Sub Page_Load
    lbl1.Text = String.Format("The date and time is {0:t}", DateTime.Now)
End Sub

或使用{0:T}作为“长时间模式”。 Here is a list of patterns