I need to get a string from resource file of page from utility class.
I tried
ResourceManager resources =
new ResourceManager(
"Company.Application.Folder.App_LocalResources.Page.aspx",
Assembly.GetExecutingAssembly());
string value = resources.GetString("ResourceName");
but got an exception that resource not found. I tried "Company.Application.Folder.Page.aspx" as a path as well.
Could you please help me to compose the right resource path.