Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9571

Web.configの値をCSHTMLで使用したい

$
0
0

Web.configでの設定値をフロント側で使用できるの知らなかったです。(便利)

Web.config
<configuration>
  <appSettings>
    <addkey="config"value="TEST"/>
  </appSettings>
</configuration>
CSHTML
@System.Configuration.ConfigurationManager.AppSettings["config"]

Viewing all articles
Browse latest Browse all 9571

Trending Articles