3
I have an HTML table where one of your td
I need to insert the following information:
<td>@item.OrderSend º</td>
I would like to insert in this way:
<td>@item.OrderSendº</td>
However, when combining character º with variable OrderSendº
compiler understands that º is part of the variable name
How can I merge this character with the variable value?
The variable returns integer values, for example 1, 2, 3.
The exit in view should be: 1º
, but it’s coming out like this: 1 º