How to read global resource file from code behind asp.net c# :
ResourceManager rm = new System.Resources.ResourceManager("Resources.CultureResource", System.Reflection.Assembly.Load("App_GlobalResources"));
string ress = "fr-fr"; // to read frennch resource
CultureInfo ci = new System.Globalization.CultureInfo(ress);
stringretstring = rm.GetString("resourcekey", ci);
string ress = "fr-fr"; // to read frennch resource
CultureInfo ci = new System.Globalization.CultureInfo(ress);
stringretstring = rm.GetString("resourcekey", ci);