I want my server to execute a JavaScript that randomly chooses properties from a previously defined array list to create a new list of random properties. I am very familiar with client-side JavaScript but I know that this script must be run from server-side if the newly returned list is to remain the same. Otherwise, if it was run from client-side, it would always change randomly and every client would have a different list.
So, I have two questions. 1) Is Server-Side JavaScript only supported by Netscape or is it also supported by Internet Explorer? 2) What code would I have to write to store my new list of values onto the server for everyone to see without it being changed? If I wrote a client-side cookie, the values would be stored yet each client would have a different version.
I am very confused, please help
Michael