how to convert string to money(sql db)

  • Thread starter Thread starter Guest
  • Start date Start date
There is no currency data type in .net but you can put a double into a
cuirrency field in SQL. Use the Convert class as below:

Convert.ToDouble("123.54");

Just make sure you remove any currency symbols like $ or £
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top