这是我现在的代码:
Sub Page_Load
lbl1.Text="The date and time is " & now()
End Sub
我想修改now()
以仅显示没有日期的时间。我该怎么做?
答案 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