Web.configでの設定値をフロント側で使用できるの知らなかったです。(便利)
Web.config
<configuration>
<appSettings>
<add key="config" value="TEST"/>
</appSettings>
</configuration>
CSHTML
@System.Configuration.ConfigurationManager.AppSettings["config"]
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 3 years have passed since last update.
Web.configでの設定値をフロント側で使用できるの知らなかったです。(便利)
<configuration>
<appSettings>
<add key="config" value="TEST"/>
</appSettings>
</configuration>
@System.Configuration.ConfigurationManager.AppSettings["config"]
Register as a new user and use Qiita more conveniently
Go to list of users who liked