17 messaggi dal 27 giugno 2002
Ho l'esigenza di aggiungere un combo box alla mia mail form
ma non co sono riuscito ! HELP ME !

CODICE HTM

<html>
<head>
<title>Invia il tuo parere!</title>
</head>
<body>
<form name="MailForm" action="formmail2.asp" method="post">

<b>Il tuo nome:</b><br>
<input type="text" name="nome"><br>

<b>Email:</b><br>
<input type="text" name="email"><br>

<input type="hidden" name="valore" value="voce1">

<b>Combobox:</b><br>
<Select name="casellaRiepilogo" onchange="valore.value=this.options
[selectedIndex].value">
<option value="voce1" selected>Voce1</option>
<option value="voce2">Voce2</option>
<option value="voce3">Voce3</option>
</Select></br>

<b>Il tuo parere sul sito:</b><br>
<textarea name="parere" cols="40" rows="10"></textarea>

<br><br>
<INPUT TYPE="SUBMIT" value="Invia" >
<input type="reset" value="Cancella">

</form>
</body>
</html>


CODICE ASP


<%@ LANGUAGE = JScript %>
<%


var nome = new String(Request.Form("nome"));
var ip = new String (Request.ServerVariables("REMOTE_ADDR"));
var email = new String(Request.Form("email"));
var parere = new String(Request.Form("parere"));
var casellariepilogo = new String(Request.Form("casellariepilogo"));

var mail = new ActiveXObject("CDONTS.NewMail");

mail.To = "email@email.it";
mail.From = "MailForm";
mail.Subject = "Compilazione MailForm da parte di " + nome;
mail.Body = " Nome: " + nome + "<br>"
+ " E-mail: " + email + "<br>"
+ " Parere: " + parere + "<br>"
+ "Combo box" + casellariepilogo;

mail.mailFormat=0
mail.bodyFormat=0
mail.Send();
%>

<html>
<head>
<title>Grazie!</title>
</head>
<body>
Il tuo parere è stato inviato!
</body>
</html>



Visto che usi asp a che ti serve incasinarti con JScript?

---[ www.digiscout.it ]---

"This message was written using 100% recycled electrons"

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.