Tagged Questions
1
vote
1answer
12 views
CultureAndRegionInfoBuilder registration
I have a web application that is very much driven by culture. I have created some custom cultures and registered them using
CultureAndRegionInfoBuilder
Once registered do I need to register ...
0
votes
0answers
35 views
Using Unicode Hindi Fonts for input in ASP.Net pages
I have tried almost everything available on Google to make Unicode Inputs work in ASP.Net pages. No success yet.
A non-unicode font like "Kruti Dev 010" works for taking Hindi Inputs. But when I use ...
0
votes
1answer
54 views
How to read from a resx file in the App_LocalResources folder using a specific culture?
To read a resource for a default culture I'd do this:
object obj = GetLocalResourceObject("MyTextResourceID.Text");
But what I need is to do the same but to be able to specify a culture for the ...
0
votes
1answer
57 views
Setting cultureinfo does not give correct strings from local resource files
I have a website with a page called buystuff.aspx. I've created two local resources: buystuff.aspx.resx and buystuff.aspx.da-dk.resx.
This works fine, and if I enter the site with a da-DK setting, I ...
1
vote
2answers
38 views
Culture formatting of an object property
I have an object with a number property (double) and has no specific culture set.
This property is derived from a database when the user logs into the website.
The culture formatting in the database ...
0
votes
1answer
47 views
change profile language
Web.config
<profile>
<properties>
<add name="Language" />
</properties>
</profile>
Default.aspx.cs
protected void Page_Load(object sender, ...
0
votes
0answers
47 views
Culture change and validators
Im writing some form for my web site, and i got a problem with changing language and validators in that form.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="site.aspx.cs" Inherits="site" ...
0
votes
1answer
36 views
asp.net merge more language in one culture
i'm using asp.net integrated language system for making my site multi-language.
I used Culture="auto:it-IT" UICulture="auto" in every page to get italian as main language. Now i want my site to ...
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 ...
4
votes
2answers
274 views
how to change date format and culture?
I need to change the culture of my string to Arabic.
this code :
<%# Eval("NewsDate","{0: dddd dd / MMMM / yyyy }").ToString() %>
will show me these results : Sunday 01 / May / 1994
I ...
0
votes
1answer
81 views
Not consistently setting thread culture in ASP.net - bad idea?
I found a specific situation where we don't set the thread culture after a page loads.
We also have a very rare case where someone's culture switches for no obvious reason.
Are these two things ...
0
votes
0answers
61 views
Validate users' number inputs considering the culture of the user
I am developing an ASP.Net web api application and I want to validate users' number inputs for the culture. Which means, if user has entered 12.0 when he is has used the culture as "no" (Norwaygian), ...
1
vote
1answer
143 views
Setting a culture to use when instantiating an object through data binding
I am developping a small training ASP .Net web application.
I have developped an ASPX page where I have declared a FormView control linked to an ObjectDataSource through data binding.
The update ...
0
votes
0answers
81 views
using CultureAndRegionInfoBuilder to create a custom culture
I am using CultureAndRegionInfoBuilder to help create the custom CultureInfo. I have some questions around using this.
For example I create a custom culture "en-RU". Is it possible to set up on the ...
1
vote
2answers
495 views
How set the culture for fileupload (input file) control in ASP.NET
I encounter problem when changing culture (language) on my website. In fact all the controls correctly change language. But only controls "asp: FileUpload" do not change. The text description is ...
0
votes
2answers
323 views
Input string was not in a correct format. calling TimeSpan.FromSeconds(Convert.ToDouble(time)) in IE on Changing Culture
Hi i m using given below method to convert in to string its working fine chrome but in IE its through exception Input string was not in a correct format. at this line
s = ...
1
vote
1answer
124 views
Trouble With Static UICulture Setting and Implicit Localization
I’m playing with implicit localization on my Win7 box via VS2010 and something doesn’t quite seem right. I have a trivial page where I set the resourceKey of my GO Button to “bnGO”:
<%@ Page ...
1
vote
2answers
304 views
How to change page culture using dropdownbox in login page?
I want to change lang in login and refresh page but in my combobox is null in InitialCulture function.
Code Behind :
protected void myLang_OnChange(object sender, EventArgs e)
{
...
3
votes
2answers
2k views
CurrentCulture incorrectly defaulting to en-US in ASP.net
I have just migrated around 100 ASP.net sites from IIS 6 on Windows Sever 2003 to IIS 7 on Windows 2008. I've just noticed that various pieces of code that use things like DateTime.Parse have started ...
0
votes
1answer
191 views
Set UICulture for subfolder in web application
I have the following code in my Global.asax file:
Protected Sub Application_PreRequestHandlerExecute(sender As Object, e As System.EventArgs)
...
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 ...
2
votes
0answers
64 views
Override string.format(“{0:c}”) behavior for certain cultures [duplicate]
Possible Duplicate:
How can I override the currency formatting for the current culture for an ASP.NET web application?
I have multicultural websites in which I set the culture via the ...
0
votes
1answer
1k views
Manually set UICulture in ASP.NET
I'm using .resx files to localise a website. Normally the appropriate file is selected automatically, but I'd also like to allow to select it manually. To do that, I store a field in the database. ...
2
votes
1answer
292 views
Why does an ASP.NET web application initially use the OS culture instead of the Internet Explorer 8 language when launched from Visual Studio?
I have an ASP.NET page that looks like this:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="culturetest4webapp._Default" %>
<!DOCTYPE html PUBLIC ...
1
vote
2answers
3k views
Get CultureInfo object from country name or RegionInfo object
Given a specific country code, e.g. "CH", how can I get a CultureInfo object? The specific country code is dynamic (changes at runtime).
I only have the country code, and i want to know if it is ...
0
votes
2answers
831 views
ASP.NET Create a specific culture with language code nb (Bokmål)
I have an ASP.NET 3.5 website.
Why can't I create a specific culture for the language Bokmal like this:
CultureInfo c = CultureInfo.CreateSpecificCulture("nb");
Language "en" works fine, it ...
0
votes
1answer
185 views
asp.net Culture causes error when reading date datatypes from sql
What I was trying to accomplish is change the language on the asp.net calendar control and from what I read I can use:
<%@ Page Title="" Culture="es-PE"....
But when I do this I get the ...
0
votes
1answer
222 views
Repeater with different culture per item
I have a repeater control which displays pricing, the currency symbol should be shown depending on the country of the specific person.
Generally, I'd just do something like:
<%# ...
0
votes
2answers
229 views
Bug in ASP.NET 2.0 when handling browser culture
I have this setting in my web config:
<globalization culture="auto" uiCulture="auto"/>
The code is compiled in VS 2010.
If target platform is set to .NET 2.0 or 3.0 then it only works for ...
0
votes
1answer
615 views
enableClientBasedCulture vs culture in web.config
What is the difference between these two settings:
<globalization enableClientBasedCulture="true" culture="auto"/>
vs
<globalization enableClientBasedCulture="false" culture="auto"/>
...
2
votes
1answer
172 views
what event(place) should i use for change culture and calendar in mulilanguage web site?
i have a multi language web site...
i made two folders in visual studio for languages(en + my language)and made my web site for each one!
for one language web site i had a class for changing culture ...
2
votes
2answers
6k views
How to change CurrentCulture at runtime?
I need to change cultures at runtime according to resource files for each culture.
I need to change the attributes of the controls in my form, according to two cultures
which have designated .resx ...
6
votes
2answers
465 views
.NET Task executed in one Thread
May I rely on the fact a Task is always executed in one thread? It can be any, but it should be the same for the whole body, as I need the thread's Culture to be set properly.
Task bind = ...
0
votes
3answers
992 views
By setting the culture to en-CA (Canada), how do you force the ASP.NET app to use US date/time?
Hopefully this is a quick question- I set my app's culture to "en-CA". I want everything culture specific to be "en-CA", EXCEPT the date format. I want the date format to be the US version ...
0
votes
2answers
454 views
How get current CultureInfo in wrapper class?
I have Main.Master page with buttons that set CultureInfo and store it in session:
protected void RU_Click(object sender, ImageClickEventArgs e)
{
Session["MyCulture"] = ...
1
vote
2answers
325 views
last point in page pipeline to change culture?
What is the last point in the asp.net page loading pipeline that I can change the culture of a page by doing the following?
Thread.CurrentThread.CurrentCulture = << new culture >>;
...
1
vote
2answers
154 views
asp.net localization question
I have two resource files:
Resource1.resx and Resource1.es-mx.resx
The default system culture is en-US.
<%@ Page UICulture="es" Culture="es-MX" %> --> still get English version (setting ...
1
vote
1answer
501 views
How to display Client Time Zone & TimeZone Abbrevations?
I am creating a asp.net 2.0 website. It display all the registered candidate with registered date. I am storing all the date in database as UniversalDate, Now want to display the date based on client ...
1
vote
6answers
859 views
calulate month from week no
i am getting week no from database need to calculate which week of the month it is.
for ex:
week no = 7 month = 2
week no 11 month = 3
How to calculate it??
Just to add on i also have the year ...
0
votes
2answers
2k views
ASP.Net: Setting the correct currency settings for string.Format()
In my ASP.Net Website I am using
String.Format("{0:C}", param)
to format currency values. On my local machine this works great, but when deploying the website to the server the output switches ...
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
575 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
323 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
362 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 ...
3
votes
2answers
500 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?
...
1
vote
3answers
101 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
450 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 ...
1
vote
1answer
309 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
644 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 ...
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 ...


