Hi Nelson, Can you provide the schema for your table and the code for your insert?
It seems you're trying to insert a record whose type is incompatible with the data type set on the database schema. For example, you may have a field for someone's ID set to expect numeric values on the database side (i.e. ID => 1234) but you're passing in a string representation of the ID from a TextBox (i.e. txtUserID.Text => "1234"). Alan http://www.twitter.com/anachronistic
