473,326 Members | 2,148 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

response.write quotes help

I need to put this whole line into a response.write statement:

field delimiter = "\""
how?
Jul 19 '05 #1
7 1897
response.write "field delimiter = " \ " "
On Wed, 28 Jul 2004 16:12:53 -0600, "Carol" <kg**@helkusa.com> wrote:
I need to put this whole line into a response.write statement:

field delimiter = "\""
how?


Jul 19 '05 #2
hmm, yes
actualli am writing to a text file with the file system object, rather than
response.write.

Any ideas?

"Bã§TãRÐ" <no****@msn.com> wrote in message
news:ij********************************@4ax.com...
response.write "field delimiter = &quot; \ &quot; "
On Wed, 28 Jul 2004 16:12:53 -0600, "Carol" <kg**@helkusa.com> wrote:
I need to put this whole line into a response.write statement:

field delimiter = "\""
how?

Jul 19 '05 #3
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!
"Carol" <kg**@helkusa.com> wrote in message
news:X6********************@comcast.com...
I need to put this whole line into a response.write statement:

field delimiter = "\""
how?

Jul 19 '05 #4
that's it thanks!!!

"Steven Burn" <pv*@noyb.com> wrote in message
news:uk**************@TK2MSFTNGP12.phx.gbl...
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!
"Carol" <kg**@helkusa.com> wrote in message
news:X6********************@comcast.com...
I need to put this whole line into a response.write statement:

field delimiter = "\""
how?


Jul 19 '05 #5
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

"Steven Burn" <pv*@noyb.com> wrote in message
news:uk**************@TK2MSFTNGP12.phx.gbl...
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!
"Carol" <kg**@helkusa.com> wrote in message
news:X6********************@comcast.com...
I need to put this whole line into a response.write statement:

field delimiter = "\""
how?


Jul 19 '05 #6
chr(34) is the quote, not the backslash.

--

Regards

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

Keeping it FREE!
"Carol" <kg**@helkusa.com> wrote in message
news:1L********************@comcast.com...
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

"Steven Burn" <pv*@noyb.com> wrote in message
news:uk**************@TK2MSFTNGP12.phx.gbl...
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!
"Carol" <kg**@helkusa.com> wrote in message
news:X6********************@comcast.com...
I need to put this whole line into a response.write statement:

field delimiter = "\""
how?



Jul 19 '05 #7
ok good thanks
"Steven Burn" <pv*@noyb.com> wrote in message
news:ev**************@TK2MSFTNGP09.phx.gbl...
chr(34) is the quote, not the backslash.

--

Regards

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

Keeping it FREE!
"Carol" <kg**@helkusa.com> wrote in message
news:1L********************@comcast.com...
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

"Steven Burn" <pv*@noyb.com> wrote in message
news:uk**************@TK2MSFTNGP12.phx.gbl...
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!
"Carol" <kg**@helkusa.com> wrote in message
news:X6********************@comcast.com...
> I need to put this whole line into a response.write statement:
>
> field delimiter = "\""
>
>
> how?
>
>



Jul 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Thomas Henz | last post by:
Hi there, I want to do: response.write("bla bla bla "in quotes" bla bla") How do I show the quotes on the screen in asp like I have to do \" in php? Thanks,
2
by: Rob McLennan - ZETLAND | last post by:
Hi, I'm relatively clueless when it comes to correct ASP syntax. I'm testing out a search form for my company's website which is done in ASP. The results are displayed as per the code shown at the...
2
by: Jon Maz | last post by:
Hi, I have written a page to test a function of mine that strips non-English accents and various other characters out of a given string. The function itself (called 'StripAll' in the code below)...
15
by: marco | last post by:
Hi, I'm a Javascript Newby. But that doesn't discourage me at all. At this time I'm working on a little javascript-gimmick. A white browser page filled with white (invissible for the viewer)...
8
by: Paul | last post by:
Hi, my problem is that I can't get getElementById to find the ID of any controls on my page. To whit: The following code-behind returns the error, "lblErrorText is undefined.": ...
10
by: Ron | last post by:
Hi, I currently am generating a report by to my end user by retrieving data from my back end DB and concatenating strings together and place this string concatenation within a Label control. I...
16
by: Dom | last post by:
Hi, I writing code that will create asp pages using the file system object. I'm trying something like this without much luck <% .. .. 'other code here
4
by: Erland | last post by:
Hi , I am using Asp.net 1.1 using VB.NET and in the Page_Load() method I am trying to use a Response.Write method as following but I keep getting errors, --------------------------...
5
by: coldstar | last post by:
In an ASP Querystring, how do I include the double quotes in the code below at "1.0" part as text in my string? I have tried ""1.0"" and almost everything else but can't get it to work. I need...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.