I try:
decimal dd = 4.12345611111111111; lblText.Text = string.Format("{0:N6}", dd); but I got a error use an M suffix
decimal dd = 4.12345611111111111m; its work perfect.I want to know what is m for?.Thanks for clearing my vision.
note: lblText is id of label control in asp.net.