forward the request to a window with specific parameters (please help)

J

jrefactors

page0.asp->page1.jsp

When the user click submit button in page0.asp, it will post the form
request to page1.jsp.
page0.asp and page1.jsp are in separate machines. In page1.jsp, based
on the parameter
interfaceName, it will forward to different jsp pages. However, we want
to forward the request
to a window with parameter like the following, without the menu bar and
toolbar.

The question is how to forward the request to a window like that?

window.open("test2.jsp",null,

"height=500,width=500,status=yes,toolbar=no,menubar=no,location=no");


//page1.jsp
<%
String interfaceName = request.getParameter("interfaceName");
if (interfaceName != null)
{ if (interfaceName.equalsIgnoreCase("id1"))
url="/id1.jsp";
else if (interfaceName.equalsIgnoreCase("id2"))
url="/id2.jsp";
else if (interfaceName.equalsIgnoreCase("id3"))
url="/id3.jsp";
//etc...

request.getRequestDispatcher(url).forward(request,response);
}
%>


Please help and advise. thanks!!
 
A

Andrew Thompson

However, we want
to forward the request
to a window with parameter like the following, without the menu bar and
toolbar.

A 'pop-up'?

Controlled intranet, or on the wilds of the internet?

If it is the internet, toss what you want. The *user* generally
wants *no* friggin* *pop-ups*. This is of major relevance to a
web application, since browser and plug-in manufacturers are finally
listenning to users and including pop-up blockers as default.
Your web-app. will have a high maintentance/suppport overhead if
you attempt to release an internet based web-app. with pop-ups.

F'Ups set to c.l.javascript, as those folks have fought the hard
yards when it comes to pop-ups.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,187
Latest member
RosaDemko

Latest Threads

Top