Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't find a way to read resource values in a controller

share|improve this question

1 Answer

up vote 6 down vote accepted

If you're referring to string resources stored in App_GlobalResources then you can add a

using Resources;

and access them via

Strings.<name of resource>

or use

Resources.Strings.<name of resource>
share|improve this answer
Thanks a million for your warm help! + Happy New Year! ;o) – silent200 Jan 2 '09 at 6:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.