I have two select controls that I created them like this:
@Html.Action("BuscarArticuloLinea", "ArticuloLinea", New With {.IdArticuloLinea = 0})
@Html.Action("BuscarArticuloSubLinea", "ArticuloSubLinea", New With {.IdArticuloSubLinea = 0, .IdArticuloLinea = 0})
In the case of the first
"SearchArticleLine"
calls a controller that invokes a partial view in which I create the select ... the controller is in charge of filling that select. "In the case of the second select it has to be filled when choosing an item from the select. first select ... that's what I can not do.When loading the page the two combos are created and only the first is filled as it should be.What is the way to fill the second select when selecting an item from the first one? ... I await your answers ... thanks