I want to change these values with DataFormatString properties in Gridview.

1.000000 --> 1 --> Deleting all digits after .

366705.000000 --> 366,705 --> Deleting all digits after . and put the comma for seperate.

12.830000 --> %12,83 --> Delete last 4 digits after . and put % (% is optinal not must)

BTW, Is there any link to suggest me otherwise DataFormatString. I analyze very well this page but sometimes still can't find what I need about data format string.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Here you go. I didn't test #3 - if it's not right, it's close.

1

Convert the number to an int.

2

String.Format("{0:n"}, 366705);

3

(12.83 / 100).ToString("{%#0.00}", el-GR);

A couple helpful formatting web pages:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.