Hi,
I cant see your code but usually this error is caused by loading the
resource file with :
<code>
Assembly a = Assembly.Load(<WebApplicationName>);
ResourceManager rm = new ResourceManager(<WebApplicationName>, a);
<code>
if its your case try using this approach to create the resource manager:
ResourceManager resources = new ResourceManager(
"<WebProjectName>.<ResName>",
Assembly.GetExecutingAssembly(),
null );
..where the resx files are named:
<ResName>.<Culture>.resx
You may also want to consider creating a only a single instance of the
ResourceManager for your web app that is kept in a static class member
or
the Application object. This cause the resources to be loaded only once
per application.
Natty Gur[MVP]
blog :
http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
*** Sent via Developersdex
http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!