M
m.ramana
I am getting the following error
Could not find any resources appropriate for the specified culture (or
the neutral culture) on disk. baseName: MyResource locationInfo: <null>
fileName: MyResource.resources
I have a web application which needs to be language specific
My folder structure
MyApp
Default.aspx (language stuff works here this works)
->Users (Does not work here)
->Approvers (Does not work here)
->Resources (Does not work here)
I have inherited a class from System.Web.UI.Page and have overritten
Render method to do my language specific content.
Which ever page needs to be language specific I inherit this new
basepage class I have created.
I am using something like this
ResourceManager resmgr =
ResourceManager.CreateFileBasedResourceManager("MyResource",
Server.MapPath("Resources"),null);
Any help is very much appreciated.
Could not find any resources appropriate for the specified culture (or
the neutral culture) on disk. baseName: MyResource locationInfo: <null>
fileName: MyResource.resources
I have a web application which needs to be language specific
My folder structure
MyApp
Default.aspx (language stuff works here this works)
->Users (Does not work here)
->Approvers (Does not work here)
->Resources (Does not work here)
I have inherited a class from System.Web.UI.Page and have overritten
Render method to do my language specific content.
Which ever page needs to be language specific I inherit this new
basepage class I have created.
I am using something like this
ResourceManager resmgr =
ResourceManager.CreateFileBasedResourceManager("MyResource",
Server.MapPath("Resources"),null);
Any help is very much appreciated.