I have a list of chemicals and need to be able to have the user select one or more chemicals and enter a value for each chemical selected, dynamically. What are some ways I can accomplish this? I am using asp.net and MVC 4 with c#.
Asked
Active
Viewed 171 times
0
-
Refer the ansers [here](http://stackoverflow.com/questions/29161481/post-a-form-array-without-successful/29161796#29161796) and [here](http://stackoverflow.com/questions/28019793/submit-same-partial-view-called-multiple-times-data-to-controller/28081308#28081308) for some options – Jul 27 '15 at 23:55
-
Front end frameworks such as Knockout.js could very easily do this, it's a front end javascript framework that implements the MVVM pattern, the tool for the job :) although MVC is a presentation layer design pattern, it's strength lies more in the delivery of the data to the front end, MVVM is much more presentation focused, combine the two – Aydin Jul 27 '15 at 23:57