Merci pour vos réponse....
Je me doutais bien que l'ASP même vieux pouvait très bien convenir pour ce type d'application!
Je met ci- dessous le code de ma page formulaire (Nous_ecrire.asp)
Pouvez-vous svp m'indiquer s'il manque quelque chose sans forcément me donner la solution code mais juste la marche à suivre.
D'avance je vous remercie.
<%
fm=Request.Form("m")
fpart=Request.Form("Part")
fpro=Request.Form("Pro")
fsoc=Request.Form("Soc")
fcode=Request.Form("Code")
fnom=Request.Form("Nom")
fprenom=Request.Form("Prenom")
fadr=Request.Form("Adr")
fcp=Request.Form("Cp")
fville=Request.Form("Ville")
fmail=Request.Form("Mail")
ftel=Request.Form("Tel")
ffax=Request.Form("Fax")
fques=Request.Form("Ques")
%>
<link href="style.css" rel="stylesheet" type="text/css">
<title>Demande de Renseignement</title>
<table width="49%" border="1" align="center">
<tr>
<td><div align="center">Demande de
renseignements</div></td>
</tr>
</table>
<form action="confirm.asp" name="nouveau" method="post">
<table align="center">
<tr>
<td><u>Vos coordonnées :</u>(Tous les champs sont obligatoires!)</td>
</tr>
</table>
<table border=0 align="center"><tr><td width=150>
<select name="m" size="1">
<%if not fm="" then%><option><%=fm%></option><%end if%><br>
<option> </option>
<option>Mr</option>
<option>Mme</option>
<option>Mle</option>
</select></td>
<br>
<tr>
<td width="150"><u>Votre Nom</u></td>
<td width="181"><div align="center">
<input name="Nom" type="text" size="30" value="<%=fnom%>">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre prénom</u></td>
<td width="181"><div align="center">
<input name="Prenom" type="text" size="30" value="<%=fprenom%>">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre adresse</u></td>
<td width="181"><div align="center">
<input name="Adr" type="text" size="30" value="<%=fadr%>">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre code
postal</u></td>
<td width="181"><div align="left">
<input name="Cp" type="text" size="5" value="<%=fcp%>" maxlength="5">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre ville</u></td>
<td width="181"><div align="center">
<input name="Ville" type="text" size="30" value="<%=fville%>">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre adresse mail</u></td>
<td width="181"><div align="center">
<input name="Mail" type="text" size="30" value="<%=fmail%>">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre N° de téléphone</u></td>
<td width="181"><div align="center">
<input name="Tel" type="text" size="30" value="<%=ftel%>">
</div></td>
</tr>
<tr>
<td width="150"><u>Votre N° de fax</u></td>
<td ><div align="center">
<input name="Fax" type="text" size="30" value="<%=ffax%>">
</div></td>
</tr></tr></table><br />
<table align="center">
<tr><td width="316">
N'hésitez pas à nous soumettre tous vos problèmes ou questions techniques :<br>
<textarea name="Ques" cols="40" rows="6"></textarea></td>
</tr>
<tr><td colspan=3 align="center">
<input type="submit" value="Envoyer" name="action" alt="Valider l'envoi de vos informations">
</td></tr></table>
</form>
