Hi people. I am using a ASP.NET MVC framework, jQuery library (1.3.2), linq to sql, sql server 2005.
I have a problem with jQuery MaskMoney plugin, to save data in sql server table.
I created a table, where this table have a field "valueProducts" type Decimal(18,2).
In my page, I have a html field with jQuery maskmoney. Example: 10.000,00 (Ten thousand (R$)).
When I save this data, occurs this error: "The model of type 'MercanteWeb.Dados.MateriasPrimasEntradas' was not successfully updated." (I use UpdateModel to save data).
I found out that this problem occurs because of thousand separator (.) and if I remove this mask plugin, it is work.
Someone can help me?
Thanks.