I am new to mvc. I have done a fair bit of development with Winforms and now I am working on an MVC project. In our winforms project we have standard controls such a dropdown list control which will show all employees. This control knows how to get the employees and display them. It exposes a property which gives the selected employee. The forms just need to put this control on it and use it.
Now my question is how can I achieve this in ASP.NET MVC (in views). I tried partial views but then how can I expose the selected value to the parent view