0
votes
5answers
31 views

“Out-of-range value” error when converting a varchar to datetime

I have this code datecreation = todaydate.Substring(6, 4) + todaydate.Substring(3, 2) + todaydate.Substring(0, 2) string sql = "insert into Usertable "; sql += "values(" + ...
0
votes
1answer
353 views

jQuery / Javascript - convert datetime to user's timezone datetime

I updated this question I would like to transform a datetime to the equivalent datetime in the country(timezone) user is located to. I have datetime in this format which is UTC/GMT: Oct 31, 2012 ...
-1
votes
2answers
149 views

convert unix time to w3 time in php [closed]

the database has fields stored in unix time, ie. 1328202426 and I have an api call of an open source standard that takes w3 time, ie. 2010-01-01T00:00:00Z a) convert w3 time, to the unix time b) ...
0
votes
2answers
925 views

Converting date from excel to matlab in multiple fields

I have a structure (gilts) in matlab with many fields (gilt_name). The structure is an imported workbook from excel, and each field corresponds to a worksheet in that workbook. Each worksheet is a ...
5
votes
3answers
4k views

convert C# date time to string and back

I'm converting C# date time to string. Later when I convert it back to DateTime object it appears that they are not equal. const string FMT = "yyyy-MM-dd HH:mm:ss.fff"; DateTime now1 = DateTime.Now; ...
0
votes
3answers
4k views

DateTime Conversion and Parsing DateTime.Now.ToString(“MM/dd/yyyy hh:mm:ss.fff”)

I store some DateTime in a CSV log with: DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss.fff") When I try to read it I found something like: "05/15/2012 10:09:28.650" The problem is when I try to ...
0
votes
4answers
2k views

Javascript Converting IETF Date to ISO8601 Format

I am using this awesome jQuery calendar plugin http://arshaw.com/fullcalendar/ One of the options for clicking on a date is a callback function to return the date that is clicked on. ...
2
votes
7answers
1k views

How to convert data into DateTime object

How do I convert a date string, in the general form of "ccyymmdd" in to a DateTime object in C#? For example, how would I convert "20100715" in to a DateTime object. Please - No RTFM links to ...