S
Savas Ates
I have a field in my table which has currency values like this
41.2
10
24.12
in my vb.net application i have a variable which i assigned as decimal
Dim mymoney as Decimal
mymoney =xx("mymoney")
I tried
Response.write mymoney
it returns 412 instead of 41.2
i tried
response.write xx("mymoney")
it returns 41.2
which kind of data type i should use ?
41.2
10
24.12
in my vb.net application i have a variable which i assigned as decimal
Dim mymoney as Decimal
mymoney =xx("mymoney")
I tried
Response.write mymoney
it returns 412 instead of 41.2
i tried
response.write xx("mymoney")
it returns 41.2
which kind of data type i should use ?