I am aware that this is quite a common problem.
I am updating info from a form textfield, info sourced from the database using this code in the head
and this code to call the info into textfield
I am aware that there is a fix of how to overcome the sql apostrophe problem, but not sure how to integrate into my code.
Any help appreciated!
Matt
I am updating info from a form textfield, info sourced from the database using this code in the head
Code:
Conn.Execute ("UPDATE Property SET Property.PropertyInfo='" & Request.Form("PropertyInfo") & "' " & strWhereClause )
and this code to call the info into textfield
Code:
<%=RS("PropertyInfo")%>
I am aware that there is a fix of how to overcome the sql apostrophe problem, but not sure how to integrate into my code.
Any help appreciated!
Matt