I am trying to insert child records into a junction table using ASP.NET 4.5 web application. Ideally, I want the user to be able to select the records to insert from a dropdownlist. For example, if I were trying to select possible Classes for a Student, the student would select desired classes from the dropdownlist. After making a selection, a new dropdownlist would appear (containing the names of possible classes) so the student could select additional classes. I can populate the dropdownlist by calling a method GetClasses() on the SelectMethod of the dropdownlist, and I know how to get the selectedvalue from the dropdownlist. What I don't know how to do is dynamically create new dropdownlists so the student can continue to add classes.
Can anyone point me to an article or something that could show me how to do this?
Any assistance is greatly appreciated!