Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
When they choose from the first dropdownlist, do you plan on posting back, or do you want to load up the next ddl without postback? – MikeSmithDev Jan 30 at 14:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.