Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
This is the code I have now:

XML
<script  runat="server">
Sub Page_Load
lbl1.Text="The date and time is " & now ()
End Sub
</script>
<html>
<body>
<form  runat="server">
<h3><asp:label id="lbl1" runat="server" /></h3>
</form>
</body>
</html>


I want to modify & now to display only the time, without the date. How do I do this?
Posted

as you just need to display time and you have asp.net page which gives you the flexibility of code behind model so you can use form load part of serverside code and simply write the following

C#
Protected void Form_Load(object sender,EventArgs e)
{
lbl1.Text=DateTime.Now.ToShortTimeString();
}


it will give you the desired result...
 
Share this answer
 
v2
Use the DateTime.ToString[^] method.

You can use the Standard Date and Time Format Strings[^] to get the time:
VB
DateTime.Now.ToString( "T" )
or the Custom Date and Time Format Strings[^]:
VB
DAteTime.Now.ToString( "HH:mm:ss" )
 
Share this answer
 
v2
Comments
Sergey Alexandrovich Kryukov 14-Apr-13 1:18am    
Sure, a 5.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900