On my SQL Server I have a money field. On my asp.net program I can retreive a record and all fields in that record retreive ok when I use the .ToString() Method but I cannot save the money to the database becuse it is a string. Then I used the .ToMoney()Method for the money field and now I get the error:<BR><BR>Public member 'ToMoney' on type 'Decimal' not found. Or<BR>Public member 'ToMoney' on type 'DBNull' not found.<BR><BR>Can anyone help me. Thank you for you time and help.<BR><BR>Where are you getting ToMoney() from? I do not see that in the docs anywhere. Try converting it to a decimal.When I convert to decimal do I use CDec(whatever!)CType(yourVariable, Decimal)