0

我在配置中有一个名为 ENV 的键,我在 layout.cshtml 中编写了以下行

<span class=@System.Configuration.ConfigurationManager.AppSettings["Env"]>@User.Identity.Name
</span>

如何编写 javascript 函数或建议其他方式来根据 ENV 值应用不同的 css 类文件。

4

1 回答 1

1

您可以在 CSS 文件中定义与 web.config 中的值匹配的 CSS 规则:

.someValue {
    color: Red;
}

这假设您在 web.config 中Env定义了密钥:

<add key="Env" value="someValue" />

还要确保在类值周围加上引号:

<span class="@System.Configuration.ConfigurationManager.AppSettings["Env"]">
    @User.Identity.Name
</span>
于 2012-05-11T09:27:49.927 回答