Originally posted by Liz Brown:
Any idea how to do this?
I always cringe a little when I see statements like "a JSP page pops up". You have get it clear in your mind that a JSP is really just a convenient way of writing a
servlet. As such, a JSP page
never pops up because a servlet doesn't pop up. Servlets and JSPs are server-side components. A popup window is a client side entity. Ne'er the twain meet. I prefer to say you "bring up a JSP in a popup window" or to be more technically correct, you "bring up the results of invoking a JSP in a popup window" but that's a little too wordy.
At any rate, the solution to your problem would be the same as the one I pointed out above.