For some reason when I use the Insert Record Wizard to set up an ASP.net Insert
Record page one of the fields gets inserted with double quotes around it.
Because of this it throws an error (The INSERT INTO statement contains the
following unknown field name).

The line in question is shown below. For some reason it adds the quotes
around my state field every time when I use the Insert Records wizard. When I
delete the double quotes it works perfectly but I'm wondering why it's
happening in the first place.

CommandText='<%# "INSERT INTO login (ADDRESS1, CITY, FNAME, LNAME, POSTAL,
""STATE"") VALUES (?, ?, ?, ?, ?, ?)" %>'

Any ideas why this keeps happening?
Thanks in advance for any help anyone can offer.