1
I’m using this conversion to get the string from txtvalor.text
and turn it into such a value: 1.500,80
curso.Valor = double.Parse(txtValor.Text);
Example I type 1,500.80. And I would like you to write to the database as well, in the Mysql database.
So how? With the dot and the comma?
– ramaral
What example string is in txtValor.Text ?
– Tony
1st thanks for answering me. I would like to pass a value in currency to the bank. type 1.440.30. I’ve tried double, decimal and float, but none of them records the commas or the dots.
– Fabrício Mendes
But you tried these guys in the bank or in code Behind there? Post your table structure (aa you tried);
– Bruno Casali