Etant débutant, j'ai reussi à me trouver un script. Reste maintenant un problème...
Le voici: script language="javascript"> function fMike() { //------------------------------ // variables declaration
var Path='monsite.dyndns.org'; var IFName='sandy'; var Home='page2.htm'; var Frm=document.myform; var Login=Frm.LOGIN.value; var Pwd=Frm.PASSWORD.value;
//------------------------------ if (document.getElementById) { var iframe=document.getElementById(IFName); iframe.src='ftp://'+Login+':'+Pwd+'@'+Path+'/'+Home; } }</script>
Dans le body:
<iframe name="sandy" style="position: absolute; left: 404; top: 608; width:154px; height:129px" target="_top" src="sandy.htm"> Votre navigateur ne prend pas en charge les cadres insérés ou est actuellement configuré pour ne pas les afficher. </iframe>
Existerait il une commande comme en html (target="top" ) afin que ma page s'ouvre en grand dans la même fenêtre?
Pourrai-je rediriger les gens vers www.un_site.com dans le cas où le mot de passe ou le login ne soit pas bon?
Marsh Posté le 10-03-2004 à 07:33:53
Salut!
Etant débutant, j'ai reussi à me trouver un script.
Reste maintenant un problème...
Le voici:
script language="javascript">
function fMike()
{
//------------------------------
// variables declaration
var Path='monsite.dyndns.org';
var IFName='sandy';
var Home='page2.htm';
var Frm=document.myform;
var Login=Frm.LOGIN.value;
var Pwd=Frm.PASSWORD.value;
//------------------------------
if (document.getElementById)
{
var iframe=document.getElementById(IFName);
iframe.src='ftp://'+Login+':'+Pwd+'@'+Path+'/'+Home;
}
}</script>
Dans le body:
<iframe name="sandy" style="position: absolute; left: 404; top: 608; width:154px; height:129px"
target="_top" src="sandy.htm">
Votre navigateur ne prend pas en charge les cadres insérés ou est actuellement configuré pour ne pas les afficher.
</iframe>
Existerait il une commande comme en html (target="top" ) afin que ma page s'ouvre en grand dans la même fenêtre?
Pourrai-je rediriger les gens vers www.un_site.com dans le cas où le mot de passe ou le login ne soit pas bon?
Merci de vos reponses