Hi, I have a requirement of opening another browser window when a press a button on my JSP. how can I achieve that. Also guide me how will I get the record selected value from that new session to my original JSP. Thanks Neha
As server cannot distinguish between different windows of the same browser, all windows share the session. So, there is no 'new' session. You can write a simple javascript function for opening a new window. like this : <script language="JavaScript"> function newWindow() { window.open("http://www.cnn.com"); } </script>