站点地图本地化不起作用
奇怪的事情正在发生。如果我在 App_GlobalResources 中只有一个文件 filename.en-US.resx 文件。 Sitemap(指的是“$resources:Web.sitemap,key”)抛出对象或键无法找到的错误。但是当我有两个文件 filename.en-US.resx 和 filename.resx [这没有键,它是空的]时,站点地图工作正常。请需要一些解释。
Strange things happening. If I have only one file filename.en-US.resx file in App_GlobalResources. Sitemap(Which is referring as "$resources:Web.sitemap,key") is throwing error that object or key couldnt find. But when i have two files filename.en-US.resx and filename.resx[this has no keys it is empty], sitemap is working fine. Please need some explanation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为在添加特定于文化/语言的资源文件之前,您需要有一个
filename.resx
充当正常(不变)资源。I think you need to have a
filename.resx
that acts as the normal (invariant) resource before adding culture/language specific resource files.