up vote 2 down vote favorite
share [g+] share [fb]

I created two files in the App_GlobalResources folder:

SiteResources.en-US.resx
SiteResources.sp-SP.resx

Both contain a value for "SiteTitleSeparator".

Here is what I am trying to do (The following line always returns null):

string sep = (string)GetGlobalResourceObject("SiteResources", "SiteTitle");

Note, that the Culture property on the page is set.

Answers in both VB and C# will be welcomed.

link|improve this question

Note, that the Culture property on the page is set. ---------------------------------------------- How did you set the culture? I have Resources.resx and Resources.fr-CA.resx, but when I read the resources, it always return the value of the default Resources.resx... Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-CA"); labUsername.Text = GetGlobalResourceObject("Resource", "Username").ToString() + " : "; This code will not read Resources.fr-CA... Thank you – user1013862 Nov 6 '11 at 19:48
feedback

2 Answers

up vote 4 down vote accepted

I changed the name of SiteResources.en-US.resx to SiteResources.resx and now everything works just fine.

Seems theer must be one invariant resource.

link|improve this answer
feedback

Yes: there has to be one .resx without a region code which will serve as a default.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.