How i can write in BoundColumn number
forexample 33-444444-5 with DataFormatString?
Thank you!
Printable View
How i can write in BoundColumn number
forexample 33-444444-5 with DataFormatString?
Thank you!
I'm not too experienced with the format string,
but think it is used just for numeric/date datatypes.
So if your value is numeric (or can be cast as such)
you should be able to use something like:
"##-######-#"
Quote:
Originally posted by fungi
I'm not too experienced with the format string,
but think it is used just for numeric/date datatypes.
So if your value is numeric (or can be cast as such)
you should be able to use something like:
"##-######-#"
Thak you!
i find it
DataFormatString="{0:00-000000-0}"
:)