I have a drop down on a web page which is breaking when the value string contains a quote.
The value is "asd but in the DOM always appears as an empty string.
I have tried every way I know to escape the string properly but to no avail.
<option value=""asd">test</option>
<option value="\"asd">test</option>
<option value=""asd">test</option>
<option value=""asd">test</option>
Any idea how to render this on the page so the postback message contains the correct value?