Culture is the combination of language and peculiarities of geographical location (like en-UK, en-US, de-AT, de-DE, fr-BE)
0
votes
1answer
114 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 = ...
0
votes
1answer
568 views
ASP.Net UTF-8 dont display correctly after changing culture in page directive
i designed an export to excel page that uses the following code
the data is displayed in grid view and the date format is displayed as M/d/yyyy
so i added the culture en-GB to page directive to ...
1
vote
1answer
318 views
New thread in ASP.NET runs in different culture
I have System.Timers.Timer that performs some operations based on schedule. When timer rises event, the threads culture is 'ru-RU' differ from culture in my web config.
<globalization ...
2
votes
1answer
2k views
Change Windows Locale / Culture without using code
This ought to be simple and it probably is but I can't seem to find an answer to this question...
I am developing C# application using Visual Studio 2008 and the application supports a number of ...
1
vote
1answer
993 views
how to force english keyboard in android EditText
I know how to force numbers, texts etc.. but is there a flag or IME options for me to force the EditText to accept only certain language like English in case my DB fields can accept only English ...
1
vote
1answer
1k views
Examples of Unicode String comparisons compared to the .NET framework default
I'm looking for some examples of how and when smart people do a Unicode comparison of strings, versus the framework default.
Since many people don't work with strings from other cultures, here are ...
2
votes
1answer
354 views
How to change the culture of a number in C#?
I'm sending parameters to paypal as hidden form vars.
but my site's culture is Danish.
So "50,00" is the value for "amount_1"
<input type="hidden" name="amount_1" value="50,00" />
I'm using ...
1
vote
1answer
1k views
format currency with currency symbol at the front
hi
how to format the currency with euro symbols at the front. A currency formatted with culture fr-Fr results in currency symbols at the end and commas instead of "."
3
votes
2answers
485 views
Localizing WebForms without excessively using meta:resourcekey
I was just given a project that needs to be localized.
I just ran into meta:resourcekey and how it's used in conjunction with local resource files.
My question is: do I have to do it this way?
...
0
votes
1answer
180 views
How to setup documents share URLs across multiple domains and cultures
i have a kentico site that has two culture specific domains (.co.nz and .com.au) and i want to setup multiple cultures so that the site has different versions of the some document in a sites tree.
I ...
1
vote
3answers
100 views
System for language versioning of .NET sites or Apps
Many years ago I build a simple system for handling languageversioning of texts in ASP.classic sites. Since then I have not converted or maintained it, and have been using various sub-optimal ...
2
votes
1answer
449 views
Asp.net export to csv and culture
I'm exporting data to a csv file using Asp.net and I need to know from the System.Globalization.CultureInfo.CurrentCulture if I should use "," or ";" as a value separator. For example US needs "," and ...
0
votes
1answer
363 views
Problem with loading culture from XML using CultureAndRegionInfoBuilder on Windows XP
I have a web application that will use a few different cultures, one of which is es-US (Spanish United States). However, Windows XP do not have any support for the culture es-US. To work around the ...
1
vote
1answer
295 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
631 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
1answer
893 views
.NET Globalization: Set Culture/UICulture on a Page or a Thread? What's the difference?
Question title is basically the entire question. In ASP.NET you can set the Culture/UICulture properties of a page by overriding the InitializeCulture method, or you can set the properties of the ...
0
votes
2answers
332 views
.net MVC culture
What's the best approach to develop multilanguage MVC web application?. What I envision is having a drop down with several language preferences on the master page. Selecting the language option would ...
0
votes
1answer
724 views
OleDB Read Excel decimal value
I am using OleDB Ace 12 to read an Excel (xslx) sheet containing a column with decimal values. When I open the Excel sheet on my PC a decimal value is correctly formatted as 1.850,50 (NLD culture with ...
3
votes
2answers
602 views
Can you make sure all threads are started with a specific culture?
In my windows service, Spring.NET creates some threads handling jobs. Is it possible to make sure all these threads are started with a specific culture? Or do I have to set the culture in each thread?
...
0
votes
2answers
1k views
CompareValidator currency check does not work with French formatted numbers
I have a salary TextBox and an associated CompareValidator, which is setup as follows:
<asp:CompareValidator ... Operator="DataTypeCheck" Type="Currency" />
I fill the TextBox with a ...
1
vote
2answers
607 views
ASP.NET reset thread culture after use?
If I set Thread Culture and UICulture for one ASPX, after pass for that page, all my aspx that use the same thread(not same request) will have the same Culture?
Because I need to set Culture just for ...
1
vote
0answers
265 views
How to force Visual Studio to sort files in Solution Explorer using culture-invariant sort
VS uses culture-variant sort for sorting files in the Solution Explorer -> in Czech, the 'Ch' digram is sorted between 'h' and 'i', and this behavior confuses me (I'd like to have my 'checkUser.aspx' ...
0
votes
2answers
559 views
read current culture of asp.net mvc project and change language in javascript confirm
I have a javascript confirm. My text is in english, but if I will change language/culture of my asp.net mvc project confirm is of cource still english.
I can controll it manually and just write two ...
0
votes
5answers
511 views
How do i convert a floating point string to an int in c#
I have a string:
string test = "19,95";
and I wan't to convert it to an int.
I use:
int num = Convert.Int32(test);
However it throws an FormatException. And tells me that the string is not a ...
1
vote
3answers
2k views
How to prevent Thread.CurrentThread.CurrentCulture to switch to the default browser value after setting it manually?
In my current application I want to implement ASP.Net localization with global resources. I have the problem, that after changing the CurrentThread.CurrentUICulture and CurrentThread.CurrentCulture ...
2
votes
2answers
880 views
How can I change resource files for a c# winform app, without changing the culture?
We have a winform app that has been in development for some time. It has serveral images and control colours that create a branded experience. We have a second customer who would like the same ...
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
1answer
947 views
Date.js culture info is confusing me
I'm including date.js (from datejs.com) and the en-IE culture info script.
If I call alert(Date.CultureInfo.dateElementOrder) I see the correct dmy, but if I try to interpret the date 02/03/01 I get ...
1
vote
2answers
225 views
How do you implement a culture-specific address form using ASP.NET MVC?
We currently have a WebForms control with an update panel. The code-behind contains logic to show/hide fields based on the selected country. This is fine for WebForms, but we ware moving to MVC, and ...
11
votes
2answers
2k views
When should I specify CurrentCulture or InvariantCulture and when should I leave it unspecified?
What is the best practice for specifying CurrentCulture or InvariantCulture and not specifying the culture at all?
From what I have read, if you're doing serialization, for instance, you need ...
2
votes
1answer
211 views
How to see resource file content in Visual Studio when created pro programmatically
I created a resource file programmatically. File got created successfully. But when I tries to open it in Visual Studio or notepad it shows me some encoded characters. I was expecting to get an XML.
...
0
votes
1answer
210 views
Setting the Culture in ASP.NET
I have an asp:literal:
<asp:Literal id="language" OnClick="changeLangauge" Text="<%$ Resources:Translate, switchLanguage %>" runat="server"/>
When it is clicked it switches the ...
5
votes
3answers
4k views
Change culture of Silverlight application
I am working on a Silverlight app at the moment. I have a few datagrids/textblocks where I use standard binding to show values, some of which are dates. e.g.
<sdk:DataGrid ...
0
votes
1answer
179 views
Date in textboxes changing format
I have an application (asp.net 3.5) that support 4 different languages. Along with other cultural changes, the date formats must match the current culture on out reporting pages.
We set the date ...
0
votes
2answers
274 views
Silverlight (RIA Services) spontaneous culture changing
My RIA enabled Silverlight Application is setting the thread culture in the App constructor (this is absolutley okay since it is an intranet application and will never ever be used by someone who is ...
1
vote
1answer
526 views
Can CultureInfo.CurrentCulture differ per application pool?
I'm having trouble with CultureInfo in our ASP.NET web application. Our web application returns a different culture, depending on which application pool it is in.
In application pool A, it is en-US, ...
9
votes
7answers
2k views
Get just the hour of day from DateTime using either 12 or 24 hour format as defined by the current culture
.Net has the built in ToShortTimeString() function for DateTime that uses the CultureInfo.CurrentCulture.DateTimeFormat.ShortTimePattern format. It returns something like this for en-US: "5:00 pm". ...
0
votes
2answers
530 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;
...
0
votes
1answer
74 views
For a class to use CultureInfo.CurrentCulture, it has to have a context correct?
If a class library method references CultureInfo.CurrentCulture, the calling client has to be running with a HttpContext correct?
1
vote
4answers
303 views
what does setting the current thread's culture code do?
what is the result of setting the current thread's culture code?
I understand if I use the resource file it will pull label's/strings from the .resx file.
What else? Will it effect my date/money ...
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 ...
1
vote
3answers
5k views
Using telerik radGrid - how to set the Date format for autogenerated column in edit mode
Using VS2008, and Telerik radGrid version 2010.1.519.35
I have a about 50 DNN modules using telerik radgrid and I need to display my dates in dd/mm/yy format. It is possible to do this easily in ...
2
votes
4answers
2k views
How to compare characters (respecting a culture)
For my answer in this question I have to compare two characters. I thought that the normal char.CompareTo() method would allow me to specify a CultureInfo, but that's not the case.
So my question ...
6
votes
1answer
429 views
Problem comparing French character Î
When comparing "Île" and "Ile", C# does not consider these to be to be the same.
string.Equals("Île", "Ile", StringComparison.InvariantCultureIgnoreCase)
For all other accented characters I ...
6
votes
1answer
254 views
case insenstive string replace that correctly works with ligatures like “ß” <=> “ss”
I have build a litte asp.net form that searches for something and displays the results. I want to highlight the search string within the search results. Example:
Query: "p"
Results: ...
3
votes
3answers
5k views
C# float.tryparse for French Culture
I have a user input which can contain float values ranging from : 3.06 OR 3,06
The culture we are in is French and thus when the user inputs 3.06 and I run a float.tryParse over this value it does ...
0
votes
3answers
1k views
C#: how to explicitly set culture for Double.Parse(string num)
I download one program that read file and then parse double values from String to Double. But I get an exception because this file contains numbers with '.' separator, but there is ',' in my culture. ...
13
votes
2answers
14k views
How to getting browser current locale preference using javascript?
Does anyone know how to obtain the browser culture from firefox and google chrome using javascript? Note: This is an asp.net 3.5 web application.
The requirement is to try and set the applications ...
0
votes
1answer
512 views
SharePoint 2007 Force Culture and UI Culture
i'm developing a sharepoint portal, and i want to force a portal culture to 'pt-PT', i already installed the moss and wss language packs and i changed the web.config too with the following statment: ...
2
votes
2answers
135 views
Is there any way for getting the direction of writing in specific culture? [duplicate]
Possible Duplicate:
Is there any way to determine text direction from CultureInfo in asp.net?
I want to get writing direction of any culture that user select in my application. for example ...
