User-1768369891 posted
like as "USD 128"->"USD 128.00"
If you variable is not string type then you can use this
<td>@courseInstance.Price.ToString("00.00")</td>
Or If it is string type or other type then used string.Format method to convert value as your desired format.
<td>@string.Format("{0:C}", courseInstance.Price).Replace("$","USD ")</td>