Posted By:
AlessandroA_Garbagnati
Posted On:
Wednesday, June 20, 2001 08:19 AM
Hi,
You are confusing Javascript and Java. They are absolutely not the same thing!
The javascript code it's executed on the client side (it's the browser that interpretes the code), while the java code it's executed on the server side and the result is send to the browser.
The request object is a server side object, and the browser can't know anything about it.
If you need to have some Javascript code executed on the server, you should use a web server capable of that functionality, and I don't know any web server that it's able to mix JSP (Java) with Javascript ServerSide.