ASP Q&A
- Started
- Last post
- 10 Responses
- tobor
Anyone know of any good beginner ASP sites?
- tobor0
Do you know what the break character is for ASP.
So say you have a word and qoutes and you wanted to have it in Response.Write("This is the "Word" in qoutes")
- mitsu0
if you want to display quotes in a string do the following:
response.write("i call myself" & chr(34) & "mitsu" & chr(34) & ".")
- tobor0
What if it is like:
Response.Write("")
- tobor0
Okay that didn't work.
What if it was like:
Response.Write(")
- tobor0
Nevermind...
- tobor0
What is ASP's escape character. For some reason the forward-slash isn't working.
- _lok0
escape char is "" (backslash)
for examplefor new line
for linefeed.
- _lok0
errr.. the pv-an didn't like <--- maby now?
- tfs__mag0
asp doesn't have an escape character... if you're trying to put a string with a ' in a database you'll need to do this
thestring=request("yourinput)
thestring=replace(thestring...