I have created a Html page using frameset which will redirect to the other html page. if i am opeming this page in html and clicking on the "search" button the page is reloading correctly but if i do it for more than7 times its showing the blank page.
i have created two html pages like parent and child.
the code for parent.html is
- Code: Select all
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>HTML Frameset Example</title>
</head>
<body>
<frameset cols="100%">
<frame name="lefty" src="frame.html">
</frameset>
</body>
</html>
the code for the frame.html is
- Code: Select all
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</HEAD>
<BODY>
<form action='parent.html'>
<input type="submit" value="SUBMIT" />
</form>
</BODY>
</html>
i am facing this problem in mozilla only. in Internet explorer its working fine.
can anyone pls help me.
thanks in advance.


