I am developping a MVC project and facing a weird problem.
In my view;
If I define a div like this
<div class="col-lg-1" style="padding-top: 10px">05931-1</div>
Hyphen is displayed in a new line. (second textbox)
When I Copy-paste this text into the text box and submit the form, everything is fine. I make a web service call and I get the proper results.
When I define the div like this, hyphen is not shown in new line.
<div class="col-lg-1" style="padding-top: 10px">05931‑1</div>
When I copy paste this result and debug the code I can also see the same values for the input however, web service returns empty results as if there is a problem.
Any idea about this behavior?