Tagged Questions
0
votes
2answers
111 views
JSON date to asp.net DateTime is changed at runtime
I've searched around and I'm really not sure why this happens.
Most of the time my app runs in GMT from devices using GMT, but I just span a server up in Singapore, so the time is 8hrs ahead. I'm ...
1
vote
0answers
152 views
SQL Server datetime culture (localization) headache
SQL Server 2005. Visual Studio 2010. ASP.NET 2.0 Web Application
This is a web application that supports multiple languages, one of them is Korean. I have “langid” in the query string to ...
1
vote
0answers
63 views
different date format in different dlls
I am facing the datetime format issue where in one dll the datetime format is MM/dd/yyyy and when that value is passed to another dll there it expects the value to be in dd/MM/yyyy and hence cant ...
0
votes
3answers
320 views
Sql Server: culture changed once i moved to another server. c# .NET
Recently I decided to move to another server. Now my application runs on different servers with different culture (IT and EN).
Everything worked fine but now i am facing many problems with date and ...
1
vote
0answers
39 views
<asp:ControlParamenter /> and nonstandard (en-US) DateTime binding
Database date format: "yyyy-MM-dd"
C# default date output: "MM/dd/yyyy"
My date format: "dd/MM/yyyy"
How do I use the asp:SqlDataSource with an asp:ControlParameter connected to an asp:TextBox ...
6
votes
1answer
203 views
Are date strings in VB6 relative to machine culture?
I have a legacy VB6 application which contains this code:
Begin VB.Label LblStDate
Alignment = 1 'Right Justify
AutoSize = -1 'True
[Blah blah ...
0
votes
5answers
1k views
Format a date in label regardless of culture
In my ascx page i have :
<tr>
<td class="lbl">Geboortedatum</td>
<td class="lbl">:</td>
<td class="data">
<asp:Label ...
-1
votes
1answer
572 views
WP7 DAteTime different locales
I have been writing a WP7 app and part of the functionality involves the use of a DateTime value. This value is also stored (in a Sterling database).
I have tried to steer away from different ...
2
votes
3answers
202 views
Current Culture and OS date configuration
I have a very tricky question here. I've been benging my head on this issue for several hours with no success.
I am building an application to be deployed on numerous machines, with different ...
1
vote
2answers
571 views
How to consider local culture of user when showing date/time?
I have the situation that my Silverlight app thinks I had the US culture, hence the whole date and time formating is not set correctly to UK.
I would like to set it up this way that any user in the ...
2
votes
1answer
816 views
WPF Custom DateTimeFormat definitions in Culture
I've been having problems with the stringformat of DateTime in my WPF application. I implemented the The Internationalization Fix which I found here: http://www.nbdtech.com/Free/WpfBinding.pdf as well ...
0
votes
2answers
406 views
Date or DateTime Object to Be independent of the Page Culture
Dim strTime as String = FomatDateForSave("28/12/2010")
Public Shared Function FormatDateForSave(ByVal strDate As String) As Date
FormatDateForSave = Date.ParseExact(strDate,'dd/MM/yyyy', ...
0
votes
1answer
118 views
.NET: DateTime settings are different on one machine
I have two applications (web site and desktop application) launched on the one machine, both uses the following to serialize DateTime object value:
string strDateTileFullFormat = ...
1
vote
1answer
307 views
Help getting GB - US date conversions working in asp.net vb
My site is set to en-GB in the web.config. I have a calendar extended textbox control on a page which lets the user select date, in GB format as string (DD/MM/YYYY). I need to convert this to a US ...
1
vote
1answer
643 views
How to convert en-gb to en-us (Arithmetic overflow error converting expression to data type datetime)
Arithmetic overflow error converting expression to data type datetime. The statement has been terminated.
The culture of my site is en-gb (18/10/2010)
The culture of my db server is en-us ...
1
vote
3answers
2k views
How to create a DateTime object not in the current culture
I'm really drawing a blank on this one. I've been working on globalization but the DateTime seems to always revert back to the CurrentThread's culture. I broke this down into smaller steps hoping to ...
0
votes
2answers
550 views
Display Date based on culture but Time based on a pattern
Does anybody know how to display
the date of a datetime based on a CurrentCulture but the Time follow this pattern "HH:mm:ss.fff" ?
I've tried to use:
DateTime NewDate = DateTime.Now;
...
4
votes
3answers
2k views
Parsing French Date
I am trying to parse a french date to a DateTime object with no luck so far. Is there a way? to do that.
String foo = "mar, 20 avr 2010 09:00:00 -0500";
I've Already tried parsing with a different ...
6
votes
4answers
2k views
String.FormatException with DateTime in non US Culture
I am getting a String.FormatException trying to convert/parse a string when the culture is other than non-US. The odd thing is that the string was generated by applying the very same format and ...
9
votes
2answers
9k views
Parse DateTime in c# from strange format
if i have a datetime string in a weird format, such as YYYY##MM##DD HH**M**SS, how can i create a new datetime object base on that? i have read something about the datetimeformatinfoclass but not sure ...
2
votes
5answers
903 views
date format in asp.net versus in console application
I'm deploying a .NET applications to another machine.
in console application, the value of
DateTime.Today.ToLongDateString();
is
10 December 2009
while in web application the value is
23 ...
0
votes
2answers
1k views
Culture-conversion in C# with DateTime
I'm having trouble getting my ASPX-App to work on the productive server. As my local environment is german but the server is english and my whole code didn't provide culture-support, I'm currently ...
1
vote
8answers
13k views
c# datetime format
I wish to have a specific format for my DateTime depending on the current culture.
So I try this:
dateTime.ToString("dd/MM/yyyy hh:mm");
This is partially OK, the / gets replaced by the ...
1
vote
3answers
259 views
Deploying applicaion in different locale than devlopment locale
My .Net .exe is used to read a file and store information in sql DB.
On the dev system we had default setting and files in US locale and things were working fine.
I used the same .exe and deployed ...
0
votes
4answers
644 views
Does this custom DateTime format break in other cultures?
When displaying my DateTime values, I want them to be formatted like so: "February 9, 2009 7:00 AM"
I am using the following code, but am concerned that the date may display incorrectly in other ...
2
votes
4answers
2k views
how to uppercase date and month first letter of ToLongDateString() result in es-mx Culture?
currently i obtain the below result from the following C# line of code when in es-MX Culture
Thread.CurrentThread.CurrentCulture =
Thread.CurrentThread.CurrentUICulture = new
...
0
votes
5answers
8k views
SQL Server 2005 vs. ASP.net datetime format confusion
I've found a similar question on stack overflow, but it didn't really answer the question I have. I need to make sure that my asp.net application is formatting the date dd/mm/yyyy the same as my SQL ...