PDA

Click to See Complete Forum and Search --> : HTML Frame


aliank
Mar 19th, 2001, 05:13 AM
halo
how to submit multiple forms once to the server after we do all the validation in the client side.

the technique i used is :
i used hidden field in the second frame. but i cannot hide the second frame totally, i still can see the scroll ruler at the right side. how to totaly hide it???

<html>
<head></head>
<frameset COLS="*,10" BORDER=0>
<frame src="a.html">
<frame src="ctrlform.html">
</frameset>
</html>


thanks for the help

Mark Sreeves
Mar 19th, 2001, 05:24 AM
set the size to 0

this should be totally hidden on IE
(might be slightly visible on Nutscrape)


<html>
<head></head>
<frameset COLS="*,0" BORDER=0>
<frame src="a.html">
<frame src="ctrlform.html">
</frameset>
</html>