What is the best way to output only time and not Date?

Use DateTime as follows

VB.NET : Response.Write(DateTime.Now.ToString("hh:mm:ss"))

C# : Response.Write(DateTime.Now.ToString("hh:mm:ss"));