|
When inserting quoted information, you should use 2 single quotes and 2 double quotes.
like 5'' 3"".
That's the escape chars.
dim h
h = CheckString(Trim(Request.Form("height")))
-----------
Function CheckString(string)
if string = "" then string = " "
CheckString = Replace(string, "'", "''")
CheckString = Replace(string, """, """")
End Function
-----------
Now use the sql statement.
|