What i want to do is, i want to have a user select multiple options from the selectlist. I couldn't find the "selectionMode=multiple" attribute if there is any on MVC selectlist as is in Listboxes on webforms. So i had to find another way to give the user
the ability i want them to have when using this system, so i captured what the user has selected using form collection on a controller. It worked the only issue was the page kept refreshing since i used a submit button.... What i would like you to please help
me with is the way to have a user able to select multiple options on the select list (i don't want to use checkboxes) so i can store those options on the data base. Just now i was trying to use Jquery to submit the form and i don't understand what is happening
My model
namespace Template.MVC5.Models
{
public class Treatments
{
public int ...
Go to the complete details ...