I have a HTML form that I'm trying to create which should load another page into the frame that it has vacated after the user clicks the Submit button.
However, this is not working so I'm looking for some tips to help.
First it's best not to use frames at all if you can avoid them. There are quite a few issues with frames and there are other ways to accomplish the same thing.
Having said that when you set up the frames you should have given the each frame a name, something like:
<frame name="main-content" src="">
And in the form you would want:
<form target="main-content" action="" method="">
Whatever is in the target attribute of the form is where you're telling the page to load.
If you need more post some code and I'll be happy to take a look.
The best answer though is to avoid using frames in the first place. You can accomplish the same thing with a scripting language like php or asp or by using server side includes. You don't really need to know more than a few basic things about any of the above to mimic frame behavior.
__________________ l Search Engine Friendly Web Design | Please login or register to view this content. Registration is FREE
l Tips On Marketing, SEO, Design, and Development | Please login or register to view this content. Registration is FREE