Hello,
I am using ASP.NET MVC and want to update content on my page based on the selected value of an HtmlHelper.DropDownList. I have an Admin page on which I would like to display a list of hired employees for a given semester, without having to redirect to another controller. Perhaps a table could be generated or a ListBox filled with these users.
In my database, I have a table containing a list of semesters, a table containing a list of users, and another table with two FK-related fields linking each semester with all the users who are hired for it.
Any ideas? Thanks in advance.