Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tracking value from frame to frameset

Status
Not open for further replies.

fungling

Programmer
Feb 23, 2003
10
HK
Hi all,

When I use request.sendRedirect("process.jsp?temp_id="+number) to pass the temp_id from a Frame to Frameset (includes top.htm, left.htm and main.jsp). The value do appear in URL, but it never be captured in main.jsp in the frame set, "request.getParameter("temp_id")" is null.

How can I get the value from form data inside the frame set?

Thanks for all your help

Joyce
 
Did you try
Code:
request.getAttribute("temp_id")
? Water is not bad as long as it stays out human body ;-)
 
Hi Targol,

Yes, I tried it before, but the problem was still existed.
Finally, I've solved it by using cookie and set the path
like that "cookie.setPath("/")".

Thanks

Joyce

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top