I have an HTML table where one of your td
needs to enter the following information:
<td>@item.OrderSend º</td>
I wanted to insert this way:
<td>@item.OrderSendº</td>
But when you join the º character with the variable OrderSendº
the compiler understands that º is part of the variable name
How can I join this character with the value of the variable?
The variable returns integer values, for example 1, 2, 3.
The output in view should be: 1º
, but this is output like this: 1 º