Error Message
I am getting this error message when I attempt to update :
Error converting data type varchar to float.
It is telling me that I am trying to put an alphanumeric field into a numeric decimal field ?
Here is the code I am using for my update :
update gfmPartNumbers
set conditionCode = '#Evaluate("form.conditionCode#gfmPartNumberID#")#',
materialNumber = '#Evaluate("form.materialNumber#gfmPartNumberID#")#',
quantity = '#Evaluate("form.quantity#gfmPartNumberID#")#',
unitValue = '#Evaluate("form.unitValue#gfmPartNumberID#")#'
The conditionCode is datatype nvarchar lenght 20, the materialNumber is nvarchar length 50, the quantity is int length 4 and the unitValue is decimal length 9.
I checked all the values on the screen before submitting and they all look good. The error message does not pinpoint me anywhere, what else and where else can I look ?
