Groups | Blog | Home
all groups > inetserver asp general > july 2004 >

inetserver asp general : response.write quotes help


Carol
7/28/2004 4:12:53 PM
I need to put this whole line into a response.write statement:

field delimiter = "\""


how?

Carol
7/28/2004 9:00:14 PM
hmm, yes
actualli am writing to a text file with the file system object, rather than
response.write.

Any ideas?

[quoted text, click to view]

Carol
7/28/2004 11:27:19 PM
that's it thanks!!!

[quoted text, click to view]

Carol
7/28/2004 11:28:57 PM
No wati that's not it.

how do you get this to work:
strTemp = field delimiter = "\""

back to the same problem

so the answer would be
strTemp = " field delimiter = " & chr(34) & """

response.write strTemp





[quoted text, click to view]

Bã§TãRÐ
7/29/2004 2:42:17 AM
response.write "field delimiter = " \ " "


[quoted text, click to view]
Steven Burn
7/29/2004 4:05:48 AM
strTemp = field delimiter = "\""
response.write replace(strtemp, chr(34), """)

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!


[quoted text, click to view]

Carol
7/29/2004 11:41:45 AM
ok good thanks
[quoted text, click to view]

Steven Burn
7/29/2004 3:34:20 PM
chr(34) is the quote, not the backslash.

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!


[quoted text, click to view]

AddThis Social Bookmark Button