
getting server side vbscript array to client side jscript
Suppose I have an ASP page with some server side
VBScript that fetches some
data from a database. I then want to use some client side jscript to
manipulate some of that data ( an array of floating point numbers). What's
the standard way to make the array from the server side script available to
the client side script? I don't need to have any changes I make to the
client side array affect the original array from the server side script, so
it can be passed by value , so to speak.
Thanks in advance for any help.
Kent.