Click to See Complete Forum and Search --> : type a password


littlehank
12-06-2005, 04:19 PM
On my webpage, i want people to be able to type something (like hello) and then they will be redirected to a different page in the other frame. Is this possible?

metalman3d
12-06-2005, 06:29 PM
Here's a way using javascript... just change the FRAMENAME to whatever your frame is called and TARGETPAGE to the page you want to open in the frame.

<form ...
Enter Your Password: <input type="password" name="MyPassword" />
<br />
<input type="submit" onclick="javascript:top.frames['FRAMENAME'].location = 'TARGETPAGE';" />
...</form>

Hope it helps