I have a simple requirement where I have 2 date values which I will be using in my view(hardcoded right now) to be read from Web config file. I got some inputs saying these values have to be passed to controller, put them in a view bag, and then read in View. Since this is the 1st time I am working on MVC, please help me with how to proceed with this. Detailed code in each of the places( Web config, controller, and View) would be helpful.

Thanks in advance, Adarsh

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Configure Unity as IOC by creating your own ControllerFactory http://weblogs.asp.net/shijuvarghese/archive/2008/10/24/asp-net-mvc-tip-dependency-injection-with-unity-application-block.aspx

Then at start-up register your web.config settings with the unity container in an object of your setting class and your controllers can then take it in constructor and it will automatically be injected.

public class HomeController : Controller
{

    WebConfigSettings settings;
    public HomeController(WebConfigSettings settings) // <-- coming via IOC
    {
            this.settings = settings;
    }

    public ActionResult Index()
    {

        ViewBag.SomeSetting = settings.SomeSetting;

        return View();
    }
}

You can then set the values from that in your view bag easily.

link|improve this answer
Can you let me know a simple example where i Store a value in a viewbag( in controller) and then read it from view? pretty new here to this area. – Adarsh K Oct 14 '11 at 4:53
@user972480 check the updated answer – Hasan Khan Oct 14 '11 at 4:57
Thanks, How do i access it in view(in cshtml file), something like @Viewbag.somesetting? – Adarsh K Oct 14 '11 at 5:01
@user972480 Yea – Hasan Khan Oct 14 '11 at 5:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.