Access key value from Web.config in Razor View-MVC3 ASP.NET

asp.net-mvc-3

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.

Best Answer

@System.Configuration.ConfigurationManager.AppSettings["myKey"]