根据全球化设置更改 web.config appsettings

发布于 2024-08-10 17:19:34 字数 126 浏览 4 评论 0原文

我正在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好倦 2024-08-17 17:19:34

在 web.config 中查找标签
然后在下一行添加你喜欢的文化
例如,

.....
<system.web>
    <globalization culture="ro-Ro" uiCulture="ro-Ro" enableClientBasedCulture="false" />
.....

另一种不太美观的方法是设置请求线程的区域性。这可以在指定 Begin_Request 方法和 的 global.asax 文件中完成。

Find tag in web.config
and then add the next line the culture you like
for example

.....
<system.web>
    <globalization culture="ro-Ro" uiCulture="ro-Ro" enableClientBasedCulture="false" />
.....

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 .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文