Popups with JSP?

Hi,I was wondering, is it possible to have make a JSP popup window from another JSP document without the use of JavaScript?Thanks!
[151 byte] By [giggipa] at [2007-11-26 18:18:56]
# 1
Opening a new popup window it is actually what a browser does, not the web server. You can use target attribute of the <a> tag, but it won't be a popup window, only a new window.
beradriana at 2007-7-9 5:52:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
i am not aware of it in jsp, but it is possible in javascript & jsp
loguKKa at 2007-7-9 5:52:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Ah, this sounds like the type of thing I am after.Could you pelase give me a quick example? It would be much appreciated!Thanks for all of your help!
giggipa at 2007-7-9 5:52:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
<a href="x.html" target="_blank">click here</a>See here for more details: http://www.w3.org/TR/html4/present/frames.html#adef-target
beradriana at 2007-7-9 5:52:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5
Thanks alot! You've been a great help!
giggipa at 2007-7-9 5:52:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...