Hello I'm new in Asp and i need some help here.
I using Oracle 8i and i'm writting asp pages.When i retrieve data from the database i have a decimal value which the output is like this. "3,5".The problem for me is that the code i have write few lines below ,i dynamically construct the update sql statement.But when i executed i get the oracle error invalid user table etc.My statement is ok but i have this trouble with the decimal separator
I must sent to the database 3.5 and not 3,5 because i havethe regional settings which are in Europe.I built a loop which replaces the "," whith "." but it is not generall.If i sent this to America i will have problems
How can i Write Asp Code where i can loop ,find regional settings and replaces the "," with "." no matter what value i have???Can I do that?The formatnumber function or fix etc doesn't solve my problem
Thank you in advance.
PS the database sees the record 3.5 but when i write
rs("mydecimalfield") it returns 3,5 which i have serious problem with that.
I using Oracle 8i and i'm writting asp pages.When i retrieve data from the database i have a decimal value which the output is like this. "3,5".The problem for me is that the code i have write few lines below ,i dynamically construct the update sql statement.But when i executed i get the oracle error invalid user table etc.My statement is ok but i have this trouble with the decimal separator
I must sent to the database 3.5 and not 3,5 because i havethe regional settings which are in Europe.I built a loop which replaces the "," whith "." but it is not generall.If i sent this to America i will have problems
How can i Write Asp Code where i can loop ,find regional settings and replaces the "," with "." no matter what value i have???Can I do that?The formatnumber function or fix etc doesn't solve my problem
Thank you in advance.
PS the database sees the record 3.5 but when i write
rs("mydecimalfield") it returns 3,5 which i have serious problem with that.