|
|

The link above will load the page called "enterloginpage" No one actually sees the contents of enterloginpage.html because its sole purpose is to load the login box in a 100% frame with the following code in the header: <! -- html inserted by user --> <frameset rows="*,100%" border=0> <frame name=hidden src=hidden.html marginwidth=0 marginheight=0 scrolling=no frameborder=0> <frame name=visible src=login.html marginwidth=0 marginheight=0 scrolling=auto frameborder=0> </frameset> <! -- end of html inserted by user --> In the code above, a hidden.html file is 0% visible and a login.html is 100% visible. Being 0% visible, I did not even create a hidden.html file for this demo. The login.html file contains the SWF file where we enter our username/password info. |