I'm struggling with keeping a load of trailing zero's a user has inputted.
I'm using ASP.NET MVC. A user comes to the web page and inputs a number, like as follows:
53.6436717 which is a longitude coordination. in the mentioned example it's not a problem, because all the numbers are preserved.
However 53.6436717000 is different from 53.6436717000000000.
My question is how do I keep the exact value the user has input? I don't wish to trim the zeros, I don't wish to add more zeros on, I just need the numbers to stay as they are. There must be an obvious way?