I'm developing a website about Farm management. There are Detail and Edit Farm pages that user can edit the size(m2) of each Farm. Size is stored in DB as Float number.
There are some cases that user input a size as non floating-point number like: 1111111111111111 (length >= 16) then size will be stored in DB like 1.11111111111111E+15.
I am now looking for the way to show Size in Detail page as same as what user has inputed (without hexadecimal char and floating-point).
<td style="white-space:pre-wrap; word-wrap:break-word">@size.ToString()</td>
Now:
Expected:
Type of Size is double
Thanks!