gpt4 book ai didi

asp.net-mvc - MVC 在 _Layout.cshtml 中打印连接字符串

转载 作者:行者123 更新时间:2023-12-02 01:02:07 28 4
gpt4 key购买 nike

我需要在 _Layout.cshtml 中打印来自 Web.config 的连接字符串,知道怎么做吗?

网络配置:

  <connectionStrings>
<add name="DConnectionString" connectionString="EnvName" />
</connectionStrings>

_Layout.cshtml:

<a class="navbar-brand" href="/"> [Print EnvName here] </a>

谢谢!

最佳答案

使用:

<a class="navbar-brand" href="/">  
@System.Configuration.ConfigurationManager.ConnectionStrings["DConnectionString"]
</a>

这使用 Razor访问 System.Configuration 的语法类。

关于asp.net-mvc - MVC 在 _Layout.cshtml 中打印连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27265455/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com