What do you mean by Dynamic values? is it in the JSP (server scope) or is it
in the JavaScript Scope.

In case it is in JSP then u can compute the output URL & then render the
output as the href of the Frame. As in:

<%
String computedParametersString = "var1=Val1&var2=Val2.....";
%>
<frame name="top" src="../header.jsp?<%=computedParametersString%>"
marginheight=1>

In case it is in JS then use as follows:

<script>
var computedParametersString = "var1=Val1&var2=Val2.....";
document.write("<frame name='top' src='../header.jsp?" +
computedParametersString + "' marginheight='1'>");
</script>

Does that answer your question??

Regards,
Arun Karthik R
SIEMENS
#84, 1st Main, Keonics Electronics City,
Hosur Road, Bangalore - 560100.
* Contact :
Direct: +91 (080) 8091611
Board Line: +91 (080) 8521122. Extn 4611
E-mail : [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>



-----Original Message-----
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED] Behalf Of S Karthikeyan
Sent: Tuesday, May 11, 2004 11:21 AM
To: [EMAIL PROTECTED]
Subject: Re: Problem with Frames


Hi..

  Try to put those dynamic values into the session and it will get passed
into the header.jsp file


regards,

S.Karthikeyan

-----Original Message-----
From: Zulekha Banu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 11, 2004 1:16 PM
To: [EMAIL PROTECTED]
Subject: Problem with Frames


Hi

 Is there any way by which I can pass some dynamic parameters
 to a frame.My
 code is something like this..


 <html>
 <frameset  rows="15%,*">
    <frame name="top" src="../header.jsp" marginheight=1>

    <frame name="bottom" src="../page.jsp" marginheight=1>

 </frameset>
 </html>

 I wish to pass couple of parameters to header.jsp.Any
 suggestions or can you
 point me to some documentation that may help?  Thank you in advance.

Regards,
Zulekha

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com

Reply via email to