How do I access a key value from web.config in my Razor view.
This is in my web.config
in the Web Project root level.
<appSettings>
<add key="myKey" value="MyValue"/>
</appSettings>
I want to have to use the key in my Razor view.
Thank you.
This question is related to
asp.net-mvc-3
@System.Configuration.ConfigurationManager.AppSettings["myKey"]