asp.net - How do I convert a string to currency? -


i'm developing asp.net application utilizes sql database. have form captures data user. if have text box grabs number, how convert number money before goes database?

we store currency value in sql server money.

you want use tryparse application won't crash if user enters invalid value.

decimal value; if (decimal.tryparse(mytextbox.text, out value)) {     // value. } else {     // user enters invalid value. display error message.            } 

Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -