>
Why when using the FormatPercentag e method I get a figure which is 100
times what in the database and what is the common approach to resolve
that?
>
Thanks,
Sam
>
On Jul 2, 10:49 am, "Samuel" <samuel.shul... @ntlworld.comwr ote:
Why when using the FormatPercentag e method I get a figure which is 100 times
what in the database and what is the common approach to resolve that?
>
Thanks,
Sam
FormatPercentag e is expecting a decimal (as in .50 instead of 50%) and
multiples by 100 to get a proper percent. If you just want to format
it try using String.Format.
Comment