Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

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

 
Thread Tools Search this Thread
Old 12-23-2004, 09:56 PM   #1
Default forward the request to a window with specific parameters (please help)


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,menuba r=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!!



jrefactors@hotmail.com
  Reply With Quote
Old 12-23-2004, 10:37 PM   #2
Andrew Thompson
 
Posts: n/a
Default Re: forward the request to a window with specific parameters (please help)

On 23 Dec 2004 13:56:42 -0800, wrote:

> 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.

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump