|
-
Mar 19th, 2001, 06:13 AM
#1
Thread Starter
Junior Member
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
-
Mar 19th, 2001, 06:24 AM
#2
Frenzied Member
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>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|