Using ASP.NET MVC Razor, I have a resource file in App_GlobalResources named General.resx and General.fr.resx with a name value pairings o
App_GlobalResources
General.resx
General.fr.resx
To access value from resoure file in view
Add this name space
@using System
Then display the value like this
@ResourceFile.Address (ResouceFile is the name of the ResouceFile)
This method is used when evironment culture thread is used.