Ask a Question related to ASP, Design and Development.
-
Giles #1
Ouptutting a double quote to a form field value with ASP
If rs("MyString") is Hello "Jim" Lad
<input type=text value="<%=rs("MyString")%>">
prints as <input type=text value=" Hello "Jim" Lad">
How can I get double quotes to display in a text box or textarea? Using a
backslash or &Quot; (with Replace() e.g.) just prints out the backslash or
&Quot;
Thanks
Giles
Giles Guest
-
MX7 Double Quote
I just upgraded to MX7. CFQUERY using where x = "sam" used to work & now the double quotes are being treated as escape characters. I don't want... -
double single quote problem in cfquery
Hi, i've this problem with ColdFusion MX 6.1 Updater and MX 7 If i try to insert a text containing a single quote (for example TEST') all works... -
Variable double quoting in SQL query when should besingle quote
Hi Anna Try using the PreseveSingleQuotes function. ie. WHERE Town in ('#PreseveSingleQuotes(TownList)#') HTH Zoe -
INSERT with double quote?
If I wanted to insert/update a field with data like this: "This is my data" How would I go about doing that? I have found that I can escape... -
Double quote issue.
change execute.program = "c:\run.bat -var1='"& var1 &"' -var2='"& var2 &"'" to execute.program="c:\run.bat -var1=""" & var1 & """ -var2=""" &... -
Ken Schaefer #2
Re: Ouptutting a double quote to a form field value with ASP
Replace " with the corresponding HTML entity, which is "
Cheers
Ken
"Giles" <msn@perryer.com> wrote in message
news:uBP4kcTcDHA.1204@TK2MSFTNGP12.phx.gbl...
: If rs("MyString") is Hello "Jim" Lad
:
: <input type=text value="<%=rs("MyString")%>">
:
: prints as <input type=text value=" Hello "Jim" Lad">
:
: How can I get double quotes to display in a text box or textarea? Using a
: backslash or &Quot; (with Replace() e.g.) just prints out the backslash
or
: &Quot;
:
: Thanks
: Giles
:
:
Ken Schaefer Guest



Reply With Quote

