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.