K
Kelmen Wong
I'm having a real hard-time to work out the hell of the statelite
assembly.
1) At start,
the official MSDN stated to use:
.... new ResourceManager(strBaseName, Assembly.GetExecutingAssembly());
and the resource file should be named as <basename>.[culture.]resx
It didn't work (in WinApp).
2) Do some reseach, figured out should be:
.... new ResourceManager(strAssembly+BaseName,
Assembly.GetExecutingAssembly());
OK, got it work in WinApp.
3) Then attempt port to WebApp ASP.NET. Create a class assembly that
manage this task. And the hell, nothing work, either using the #2
findout or the MSDN.
Just keep on getting "Could not find any resources..." so and so.
Does anyone know what specifically need to be work out for WebApp?
assembly.
1) At start,
the official MSDN stated to use:
.... new ResourceManager(strBaseName, Assembly.GetExecutingAssembly());
and the resource file should be named as <basename>.[culture.]resx
It didn't work (in WinApp).
2) Do some reseach, figured out should be:
.... new ResourceManager(strAssembly+BaseName,
Assembly.GetExecutingAssembly());
OK, got it work in WinApp.
3) Then attempt port to WebApp ASP.NET. Create a class assembly that
manage this task. And the hell, nothing work, either using the #2
findout or the MSDN.
Just keep on getting "Could not find any resources..." so and so.
Does anyone know what specifically need to be work out for WebApp?