How to

  • Thread starter Thread starter Henrique Berenguel
  • Start date Start date
H

Henrique Berenguel

Hello folks. I have a DataGrid in a Web Form. I´d like to show numeric
columns in Money format US$ 10,000.98. However, when I fill the DataGrid
from a SqlCommand, it fill in the DataGrid like this: 1000098. How do I do
that?

Thanks
 
How do I do that?

Do you have a sample?

Tks


"Tu-Thach" <[email protected]> escreveu na mensagem
You have to set
DataFormatString="C"
for the column that you want rendered as monetary value.

Tu-Thach
 
Back
Top