Multiple Listbox filters with select all at Linq
I have 2 listbox like below. I want to filter the list from the listbox parameters, forexample segment A and All Status. What should I write into the ALL value in the Listbox? <select class="form-select form-select-solid" name="Segment"> <option value="???">All</option> <option value="A">Segment A</option> <option value="B">Segment B</option> <option value="C">Segment C</option> </select> <select class="form-select form-select-solid" name="Status" > <option… Read More Multiple Listbox filters with select all at Linq