I set a Application variable in my global.asa.cs with:
protected void Application_Start() { ... // load all application settings
You should be able to access this via HttpContext.Current.Application[], however MVC best practices would state that you should probably consider passing this through your View Model.
HttpContext.Current.Application[]