Click to See Complete Forum and Search --> : about frames and jsps


sampathreddyv2000
February 19th, 2005, 01:26 AM
<html>
<head>
<title>Test</title>
</head>
<frameset rows="80,20">
<frame name="disp" src="disp.jsp">
<frame name="result" >
<noframes>
<body>
This page uses frames, but your browser does not support them.
</body>
</noframes>
</frameset>
</html>

this is my index page.in top frame iam displaying apage called disp.jsp.in that page
there is a submit button.when i click that submit button the data in disp page is submitted to a page called test.jsp.in that page some retreivels from the data base has been done.now the results of this page i want to show in the below frame of the index.jsp( that is result) .i have given target="result" in the button declaration.but its not working..
regards,