lunedì 7 dicembre 2020

Asp.Net Populating select control using Jquery

Nel caso che si vuole valorizzare un controllo html di tipo select, il frammento di codice qui di seguito illustra tale tecnica utilizzando jquery

success: function (response) // Dati ricevuti
        {
            $.each(response, function (key, val) {
                var html = '<option value="' + key + '">' + val + '</option>'
                $("# DdlControllo ").append(html);
                
            })

        },

Nessun commento: