Thank you for your help.
Nagui
Do you mean the page arguments? They sure work.
frameset.jsp?tabpgid=1&someOtherArgs=1
--> topFrame.jsp?tabpgid=1
--> bottomFrame.jsp?tabpgid=1&someOtherArgs=1
--
Rahul Jain
"Nagui Fam" <nf...@mgm.com> wrote in message
news:8EMSf2N...@forums.sybase.com...
Also in JavaScript I can change the url of a frame from a script on another
frame. For example let us say in frame_1 I have the following script to
load a different page on frame_2
window.frame_2.location = newpage.htm
How can I do the same from Java.
Thank You
Nagui
"Rahul Jain" <rahul...@mail.com> wrote in message
news:Aj95IcU...@forums.sybase.com...
var myURL = window.frame_2.location;
// now find args
var arg1start = myURL.indexof("arg1");
....
Tarik
Team Hepek
www.hepek.com
"Nagui Fam" <nf...@mgm.com> wrote in message
news:xyRiZhV...@forums.sybase.com...
Parent.frame_2.location =
newurl.jsp?arg1=<%=request.getparameter("arg1")%>&arg2==<%=request.getparame
ter("arg2")%>
Thank You all for your help
"Tarik Makota" <tma...@acedsl.com> wrote in message
news:zvKGF1W...@forums.sybase.com...
<Javascript tag>
myvar1 = <%=JSP_variable%> ;
</javascript tag>
You end up in the client with the myvar1 variable in Javascript loaded with
the value that you had in the JSP. It is not 'passing' but it does work for
JSP ==> client Javascript communication (one way obviously).
"Nagui Fam" <nf...@mgm.com> wrote in message
news:FIYhXPX...@forums.sybase.com...