tags:

views:

421

answers:

1

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

+2  A: 

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>
Todd Smith
Thanks a million for your warm help! + Happy New Year! ;o)