C#: How do you get the current time (not date AND time)?
Example: 5:42:12 PM
|
|
Excuse me but what type of namespace should I pick to have the compiler recognize "Datetime" and deal with that. I have tested out : Using System.Datetime; It's not working |
||
|
|
|
|
How can we get the datetime from internet using a webservice. Does anyone know of any such webservice? |
||
|
|
|
|
Hi guys, Try this one. Its working for me in 3tier Architecture Web Application. :) (But No use here) '" + DateTime.Now.ToString() + "' Please remember the Single Quotes in the insert Query. For example see my example Insertion.
The DateTime insertion at the end of the line. Let me know how it is working in your Web apps... ? Regards |
|||
|
|
|
|
By the way, I want the same data but in DateTime type, cause this is all for strings right? |
||
|
|
|
Another option using String.Format()
|
||
|
|
|
|
This will show you only the current time, in 24 hour format:
Regards |
||
|
|
|
|
Current time with AM/PM designator:
Current time using 0-23 hour notation:
|
||
|
|
|
|
The Date is the time. Internally things get counted as 'number of seconds since some point in time' which I think is Midnight, 1 January, 1600, or something like that. |
||
|
|
|
|
DateTime.Now.TimeOfDay or DateTime.Now.ToShortTimeString() |
||
|
|
|
|
datetime.TimeOfDay returns a TimeSpan and might be what you are looking for. |
||
|
|
|
|
Get the current date and time, then just use the time portion of it. Look at the possibilities for formatting a date time string in the MSDN docs. |
||
|
|
|
|
DateTime.Now.TimeOfDay gives it to you as a TimeSpan (from midnight). DateTime.Now.ToString("HH:mm:ss tt") gives it to you as a string. |
||||
|