Request forwarding from servlet to jsp's in a frameset
843836Jun 3 2004 — edited Jun 3 2004I am trying to forward request to a jsp containing a frameset . I am also setting a request attribute in the servlet- the arraylist.
I know that jsp's in each of the frames have their own requests. So I tried using jsp:include in the frame src , .i.e,
<FRAMESET rows="80,*" frameborder="yes" border="1" framespacing="0" >
<FRAME name="topFrame" scrolling="NO" noresize src="/resnet/jsp/squash/common/resnetheader.html" >
<FRAMESET cols="*,588" frameborder="yes" border="1" framespacing="0" rows="*">
<FRAME name="mainFrame" scrolling="yes"
src=<jsp:include page="membertypeupdationlist.jsp"/> >
<FRAME name="rightFrame" scrolling="no" noresize
src=<jsp:include page="membertypeupdationdetails.jsp"/> >
</FRAMESET>
</FRAMESET>
Now I am able to access the request attribute from the membertypeupdationlist.jsp , but the page is not getting displayed instead shows Error with Status code 404.
Can anybody help in this regard. At times I need to use request scope for my data and not session scope and also I need to use framesets.