Being a newbie, please excuse my trivial question. (ASP.Net MVC4)
After reading lots of posts/tutorials I am still not sure about how to approach. What I am trying to do is have three Dropdownlists on my Index page. For instance, Country, Company, Branch. I have same data model for them which are linked to my database using EF. I have managed to just list all the data on the Index Page. However I need them inside the dropdownlist.
Question is how do I create the controller for that? Currently the controller looks like:
public class HomeController : Controller
{
private CorpCostEntities db = new CorpCostEntities();
public ActionResult Index()
{
return View();
}
...
...
}
Do I need to create separate ActionResult methods for each table to populate data? Or do I use method overload for Index(), such as Index(Country country), Index(Company comp), Index(Branch branch)?
Next question is since there will be difefernt ActionResult methods, do I need to create separate Views for that? I am using simple MVC structure. I don't have ViewModel or something other than MVC.
What exactly the approach to first create the controller for a multiple dropdownlists and then show them in an existing View page?
Thanks for help in advance.