ASP

I have

value(0) = 1
value(1) = 2
value(2) = 3
value(3) = 4
etc...

I need to have as output
1,2,3,4 ...

Finnaly I must submit that to 2nd asp page, and use it inside the
javascript. Any ideas?

Re: Parsing? by William

William
Mon Sep 01 06:31:01 CDT 2003

Need_help wrote:
> ASP
>
> I have
>
> value(0) = 1
> value(1) = 2
> value(2) = 3
> value(3) = 4
> etc...
>
> I need to have as output
> 1,2,3,4 ...

join(value,",")


> Finnaly I must submit that to 2nd asp page,

response.write ....

> and use it inside the
> javascript. Any ideas?

when you have it in the document than you can use client side script to
manipulate it.

news:comp.lang.javascript is over there ---->

--
William Tasso - http://WilliamTasso.com



Re: Parsing? by Bob

Bob
Mon Sep 01 06:31:23 CDT 2003

Need_help wrote:
> ASP
>
> I have
>
> value(0) = 1
> value(1) = 2
> value(2) = 3
> value(3) = 4
> etc...
>
> I need to have as output
> 1,2,3,4 ...
>
> Finnaly I must submit that to 2nd asp page, and use it inside the
> javascript. Any ideas?

Assuming value is an array, use a hidden textbox and, in the form's onsubmit
event, set its value to the result of:

Join(value, ",")

HTH,
Bob Barrows