Trying to sort matching topics and localize ... what I'm doing:
Localization A.aspx creates:
- App_Localresources \ a.aspx.resx
- App_Localresources \ a.aspx.resx.fr ...
However, I want to add additional parameters. I want to have:
- App_Localresources \ a_theme1.aspx.resx
- App_Localresources \ a_theme1.aspx.resx.fr
- App_Localresources \ a_theme2.aspx.resx
- App_Localresources \ a_theme2.aspx.resx.fr
So, if I am in Theme1, I want to use a resource set for theme 1.
Is there a way that I can override which resx file A.aspx will use when loading?
those. when it tries to download a.aspx.resx.fr file, I want to replace it with a_theme1.resx.fr
Thanks so much for any ideas! :)
source share