根据全球化设置更改 web.config appsettings
我正在为 2 个不同的国际站点使用通用代码,但具有不同的 web.config 设置。
我想将两组应用程序设置保留在同一个 web.config 文件中,并仅更改每次安装的全球化设置。
有办法做到这一点吗?
I am using common code for 2 different international sites but with different web.config settings.
I'd like to keep both sets of the appsettings in the same web.config file and just change the globalization settings for each installation.
Is there anyway to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 web.config 中查找标签
然后在下一行添加你喜欢的文化
例如,
另一种不太美观的方法是设置请求线程的区域性。这可以在指定 Begin_Request 方法和 的 global.asax 文件中完成。
Find tag in web.config
and then add the next line the culture you like
for example
The other way but less beautifull is to set the culture for request thread. This is can be done in global.asax file specifing Begin_Request method and .