i need to write double quot in the response.write
How do i do that????
Printable View
i need to write double quot in the response.write
How do i do that????
Say:
response.write """"
i.e., jus like "Hi" would print Hi, here Hi is replaced with 2 double quotes. If u need to print an escape character, u need to put it behind a double quote. But a double quote itself is an escape character. So we print it by putting it behind double quote itself.
- Jemima.
thnx a lot it works