localization of web.sitemap using a resx file in other project -
I am developing a web application and I am using culture information localization. All of my application's localization resources are in another project with only one resource (resx) files. This architecture is used because I have other applications that use the same resources.
My problem is now localization of web.sitemap. I currently have a resx file for web.sitemap in the project and I refer to it using the following syntax
title = '$ Resource: Sitemap, clip, _LIST'
Description = '$ resource: SiteMapRes, CLIPS_LIST
The problem is that this approach does not work when I use the resources contained in other projects Does
Does anyone know how to solve my problem?
Best regards,
Uses sitemap Localization expression contained in the Sitemap The default localization provider to open does not allow the default provider to set an external assembly through expression. The only way to change this behavior is to create your localization provider. The article shows how to do this. After establishing your own provider, you can use an expression like this from an external assembly to use a resource:
The actual implementation of the provider is not very difficult as you will see in the article. .
Regards, Robin
Comments
Post a Comment