I am getting a value that looks like 17.55453304545 (just as an example), from a database. But I want it to show with one decimal, so that it looks like: 17.6, before it is shown to the aspx page. I don't have access to change the value in tha database tabel, so I must do it in the C# code instead. I have tried:
double result = (Convert.ToDouble(this.GetFieldValue("value"));
But the value does not change. Come to think of it, then I think that it is because I use double? The value is probably a double at first.