Results 1 to 2 of 2

Thread: HTML Frame

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Sep 2000
    Posts
    30

    Question

    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

  2. #2
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    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>
    Mark
    -------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width