Visualizzazione dei risultati da 1 a 2 su 2

Discussione: form mail flash+asp

  1. #1

    form mail flash+asp

    Buongiorno a tutti!!!
    Ho un problema con un form creato in flash che interagisce con una pagina ASP!!! Di ASP non ne capisco nulla, ho semplicemente personalizzato un documento già esistente e tutto funzionava, ma ora non mi funziona +!!!

    ecco il codice:

    <%@Language=VBScript%>
    <%option explicit%>
    <%dim OggettoMail, strBody
    set OggettoMail = Server.CreateObject("CDO.Message")
    StrBody = "<HTML><HEAD><TITLE>EMAIL</TITLE></HEAD><BODY bgcolor='#e1e1e1'>"
    StrBody = StrBody + "Questi sono i dati inviati dal form del sito:
    "
    StrBody = StrBody + "nome: <FONT COLOR=RED>" & Request.Form("nome") & "</FONT>
    "
    StrBody = StrBody + "cognome: <FONT COLOR=RED>" & Request.Form("cognome") & "</FONT>
    "
    StrBody = StrBody + "citta: <FONT COLOR=RED>" & Request.Form("citta") & "</FONT>
    "
    StrBody = StrBody + "indirizzo: <FONT COLOR=RED>" & Request.Form("indirizzo") & "</FONT>
    "
    StrBody = StrBody + "telefono: <FONT COLOR=RED>" & Request.Form("telefono") & "</FONT>
    "
    StrBody = StrBody + "mail: <FONT COLOR=RED>" & Request.Form("mail") & "</FONT>
    "
    StrBody = StrBody + "preventivo: <FONT COLOR=RED>" & Request.Form("preventivo") & "</FONT>
    "
    StrBody = StrBody + "</BODY></HTML>"
    OggettoMail.From = Request.Form("mail")
    OggettoMail.To = "xxxxx@xx.xx"
    OggettoMail.Subject = "prova dal sito"
    OggettoMail.BodyFormat=0
    OggettoMail.MailFormat=0
    OggettoMail.Body = strBody
    OggettoMail.Send
    set OggettoMail = Nothing%>

    Mi dite come posso risolvere il problema?
    Grazie!
    Ciao!

  2. #2
    dovresti chiedere nella sezione ASP del forum.
    I moderatori ti sposteranno li.
    Consulenza aziendale a 360° http://www.gruppodg.it http://www.gruppodg.it/3d
    Realizzazione siti internet, Siti Flash, Ricerca Location per bar negozi , esercizi commerciali, sviluppo pratiche e allestimento

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.