html - Pass form login data to another frameset page -


i have webpage 1 has login form on it, this

<form method="post" action="webpage2" name="login">     <fieldset><span class="graytitle">big fields</span>     <ul class="pageitem">         <li class="bigfield"><input placeholder="username" name="id"/></li>         <li class="bigfield"><input placeholder="password" name="password" type="password" /></li>                                 <li class="button">         <input name="submit input" type="submit" value="submit input" />          </li>     </ul>         </fieldset></form> 

then have webpage2 frameset of webpage3 should acquire data webpage1.

 <frameset cols='100%'><frameset  rows='100%'><frame  src='webpage3.html'></frameset></frameset> 

how can pass login data webpage3 in frame of webpage2?

i need above scenario frames. cannot post directly webpage3 adding addition code webpage2

thank you

i think not possible. iif webpage1 in frame of webpage2, use target attribute:

<form method="post" action="webpage2" name="login" target="name_of_other_frame">  <frame name="name_of_other_frame" src...... 

but that's think.


Comments

Popular posts from this blog

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

apache - Add omitted ? to URLs -

php - How can I stop spam on my custom forum/blog? -