i am an unrequited astronomer, pretend patient, gentle adventurer, pedal enthusiast, recovering calligrapher, occasional thespian and unfinished poet living in portland, oregon. contacting me via email is usually a good idea.
11:54 AM:
[#]
[0]
asp concatenation is kicking my ass. i can't finish a freaking sql update statement but i don't see anything obviously wrong:
If not IsEmpty(Request.Form("Update")) then
conn.execute "update OLCDB_SuppressCRN_t
set SuppressCRNText = " & "'" & Request.Form("SuppressCRNText") & "'" & "
where SuppressCRNValue = " & Request.Form("SuppressCRNValue")
End If
i'm resisting all urges to compare it to php, which uses a lot less quote marks.