I have a form in an MVC view which, when submitted, passes back various values. But one of the values can be "70+" The problem is the plus sign is being passed back to the controller as a blank space i.e. "70 "
This is the input element as it appears on the view:
<input type="hidden" value="70+" name="TestInput">
It is produced using knockout.js from the following line:
<input type="hidden" data-bind="value:name" name="TestInput" />
When page first loads the plus sign is included in the model, but when the form is submitted the plus sign is no longer part of the model.
Note: The value of input is variable so it might not include a plus sign at all, but if it does I need it to be passed through correctly.
How can I make sure the plus sign is passed back to the controller?