I have four asp pages which are A, b,c,d.
from A.asp, I call B. B has frameset
<frameset cols="230,*" frameborder="NO" border="0" framespacing="0">
<frame src="C.asp" name="leftFrame" scrolling="NO" noresize>
<frame src="D.asp" name="mainFrame">
</frameset>
Inside C, I have a button, if user click, start database process, after it done, I have
response.Redirect("A.asp")
, but A is not took a whole screen, the page is still devided to frameset. How it can show A.asp on full screen.
thanks in advance.
Start Free Trial