-
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
-
set the size to 0
this should be totally hidden on IE
(might be slightly visible on Nutscrape)
Code:
<html>
<head></head>
<frameset COLS="*,0" BORDER=0>
<frame src="a.html">
<frame src="ctrlform.html">
</frameset>
</html>