Ciao ho questo errore:
Invalid column name 'Cognome'
che so che significa che manca la colonna 'Cognome'

ma nel db c'è,

nel pannello pure:
<asp:TextBox id="Cognome" runat="server"></asp:TextBox>


e la query è fatta cosi:
StrQuery = "INSERT INTO CLIENTI (Nome, Cognome, Città, Via, Civico, Cap, Tel, Email) VALUES ('"& Replace(Nome.Text, "'", "''") &"','"& Replace(Cognome.Text, "'", "''") &"','"& Replace(Città.Text, "'", "''") &"', '"& Replace(Indirizzo.Text, "'", "''") &"', "& Civico.Text &", "& Cap.Text &", '"& Tel.Text &"', '"& Replace(Email.Text, "'", "''") &"')"



dove sbaglio?