You will have this problem with any server and OS combination.
The VBScript that has access to the ADO, Server and Session objects is running on the server. When you write java script code, it's running on the client (unless you are writing ASP with javascript, or more correctly, with JScript). Once the asp page has been streamed to the browser in HTML, it's living in the context of the client browser. As far as the server is concerned, the page no longer exists. All the objects that live during the life cycle of a page (ADO/Server/Session) are only accessible to code running on the server.
Peter
|