Wrox Programmer Forums
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 3rd, 2005, 10:29 PM
Authorized User
 
Join Date: Dec 2005
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Default Make IE use fi resx file

I have one resource file named: Resource.resx
and another named: Resource.fi-FI.resx

In the code I have the following line in the Page_Load handler:

Page.Title = Resources.Resource.PageTitle;

But it always displays the page title from the Resource.resx file (in English). In IE I changed the language setting to Finnish[fi] and moved Finnish[fi] to the top. I even went to the service http://www.cs.tut.fi/~jkorpela/multi/7-en.htm and it shows IE is set to use Finnish. But when I hit my ASP.Net 2.0 page, it still always shows in English. What's going on here?

Any tips?
Thanks.

 
Old December 4th, 2005, 06:25 AM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

You need to set the Culture and UICulture properties of the Page in the <%@Page directive, like this:

<%@ .... Culture="Auto" UICulture="Auto" ...>

Since setting in each page is troublesome you can also set this in the Web.config file under <system.web> with the <globalization> node like this:

    <globalization culture="auto" uiCulture="auto" />

As a third alternative, you can manually set the user's preferred culture (instead of automatically determining the culture from the browser) in the Global.asax file:

Sub Application_PreRequestHandlerExecute(ByVal sender As Object, ByVal e As EventArgs)
  Thread.CurrentThread.CurrentUICulture = New CultureInfo("fi-FI", False)
End Sub

Instead of the hardcoded fi-FI you could retrieve this information from the preferred language in the user's Profile for example.

HtH,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.





Similar Threads
Thread Thread Starter Forum Replies Last Post
how to adjust the table display for dynamic xml fi Venki XSLT 8 July 10th, 2008 09:53 AM
How do I make a Help File? chobo2 C# 2005 1 November 13th, 2007 05:36 AM
Any code for automatically inserting queries of fi gilgalbiblewheel Classic ASP Databases 9 September 4th, 2004 12:12 PM
import Cristal report in resx file lpastor C# 1 March 1st, 2004 07:38 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.