Forum de discussion
Forum « Programmation ASP » (archives)
Re: Récupérer un formulaire avec la méthode POST
Envoyé: 21 avril 2006, 18h56 par crakhead
Formulaire HTML ***
<html>
<head>
<title> Test sur Formulaire POST (FORMULAIRE) </title>
<form method="POST" action="formjo.asp">
Login <input type="text" name="loginform">
Password <input type="text" name="passwordform">
<input type="submit">
</form>
</head>
</html>
Page .ASP ***
<html>
<body>
<title> Formulaire (ASP) </title>
<body>
<%
Dim login, password
login = Request.Form("loginform")
password = Request.Form("passwordform")
Response.Write login
Response.Write password
%>
</body>
</html>
Merci ben !!!
Réponses
|