The uiculture tag has no wiki summary.
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, ...
2
votes
1answer
336 views
Change UI culture in WinRT
Is it possible to change the UI Culture in WinRT on-the-fly? I've found ApplicationLanguages.PrimaryLanguageOverride = "en";, but this only works before showing the app UI and not afterwards (e.g. I ...
1
vote
1answer
107 views
WPF application customize shortdate when using stringformat={}{0:d}
We are trying to allow the app to have its culture set at runtime and optionally override the way dates are displayed.
We create our own culture with:
private CultureInfo CreateCulture()
{
...
0
votes
1answer
53 views
mvc load view on culture
I don't seem to be able to find much on this. Is there a way I can have different views per culture? Is there something built in mvc3 for this? Is there anything out there about this? I don't want to ...
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)
...
13
votes
1answer
4k views
What is the difference between Culture and UICulture?
Could someone give me a bit more information on the difference between Culture and UICulture within the .NET framework? What they do and when to use what.
2
votes
2answers
2k views
Setting culture for session
Each user of my application will choose their country, after which it will be stored in a cookie and stored for later requests. Everything is working OK, but I need to set the culture at the start of ...
1
vote
4answers
2k views
MVC 3 building dynamic meta keywords meta description functionality for multi-culture site
I need to create db driven meta keywords/description. I would store these records in a database, xml format i presume; since it would be per culture.
How would i go about doing this?
any feedback, ...