|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Double Quotes in Access Output to form
I am trying to fill a form with output from an access database, but it's cutting the data if double quotes (") are used.
Here's a sample of one of my fields: <tr><td> Description:</td><td> <input type = "Text" size = '50' name = "Description" value = "<% response.write rs2("Description")%> "> </td></tr> Now if I were to write, on it's own: Response.write rs2("Desription") I get the full output: Featured in “The Prince”, an adaptation of Hamlet But in the input text box above, I get: Featured in It's obviously reacting poorly to being placed in the HTML form.... anyone got any ideas? Cheers- dan |
|
#2
|
|||
|
|||
|
Also, a quick update-
it works fine for chr(147) and chr(148) - these are open and close double quotes, respectively. It doesn't work for chr(34), which is a generic open and close quote- the kind you'd use in Notepad. |
|
#3
|
|||
|
|||
|
jDan,
instead of chr(34) try using " - that did the trick for me. Aram |
![]() |
| Viewing: Dev Shed Forums > Databases > Database Management > Double Quotes in Access Output to form |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|