|
Looks like a whacky string concat issue..
Since you are GOING to use string concat like that.. try it like..
SQLstr="INSERT INTO tblCreateUse (f_name)"
SQLstr= SQLstr & " VALUES ('" & Request("f_name") & "')"
Notice the single quotes on EITHER side of the string break doublequote..
Only problem is, this is bad form... try using Bind variables and SQL parameters instead.. It makes for a bit more code, but helps in protecting against SQL injection attacks.
|