Context = Jester.
I have a an html-select-element with size = 5 and with atrribute "multiple". This enables me to select multiple items. But when i retrieve the value with like: @"myselectlist" i get a single item.
Maybe i am missing something but can i somehow retrieve the multiple items?
Although i can select multiple items in the page, when i do after that a View page-source, I get the following with only one item selected.
<span ><label for="sel_noise_words">Pick noise-filter(s):</label></span>
<select id="sel_noise_words" name="sel_noise_words" size="5" onchange="sel_noise_words_onchange()" multiple>
<option value="noise_words_dutch_generic.dat">*_dutch_generic.dat</option>
<option value="noise_words_english_generic.dat" selected>*_english_generic.dat</option>
</select>
Thanks in advance, Joris.