You will need to use the REPLACE command to either replace them with an escaped version of themselves or another character so that they do not cause this issue, for example :
response.write("<input type='text' name'myTxtBox1' value='" & Replace(thevalue,Chr(34),Chr(39)) & "'>")
Replaces the double quote with a space
|