codice:
strCDC_IMPC = trim(request.form("CDC_IMPC"))

strSql = "INSERT INTO FondoSpese " 
strSql = strSql & " (Data_reg, " 
strSql = strSql & " altro_campo, "   
strSql = strSql & " cdc_impc) " 
strSql = strSql & " VALUES " 
strSql = strSql & " (#" & date() & "#, " 
strSql = strSql & " 'CDC', "   
strSql = strSql & " "& strCDC_IMPC & ") " 

conn.execute(strSql)
Roby