Ver Mensaje Individual
  #13 (permalink)  
Antiguo 08/06/2010, 12:21
natobicarbo
 
Fecha de Ingreso: enero-2010
Mensajes: 91
Antigüedad: 14 años, 3 meses
Puntos: 1
Respuesta: Fallo de un formulario dentro de la pelicula

Edysierra, disculpame yo me refería a este código q habías puesto:


Dim HTML

HTML = "<!DOCTYPE HTML PUBLIC ""-//IETF//DTD HTML//EN"">"
HTML = HTML & "<html lang=""es"">"
HTML = HTML & "<html>"
HTML = HTML & "<head>"
HTML = HTML & "<meta http-equiv=""Content-Type"""
HTML = HTML & "content=""text/html; charset=iso-8859-1"">"
HTML = HTML & "<title>Consulta desde la Web</title>"
HTML = HTML & "</head>"
HTML = HTML & "<body bgcolor=""FFFFFF"">"
HTML = HTML & "<font size =""2"" face=""Arial"">"
HTML = HTML & "<div align=""center""><strong>Consulta desde la Web</strong></div>"
HTML = HTML & "Nombre y Apellido: <strong>" & nombre & "</strong><br>"
HTML = HTML & "Telefono: <strong>" & telefono & "</strong><br>"
HTML = HTML & "Email: <strong>" & email & "</strong><br>"
HTML = HTML & "Consulta: <strong>" & consulta & "</strong><br>"
HTML = HTML & "</font>"
HTML = HTML & "</body>"
HTML = HTML & "</html>"

Set link = CreateObject("CDONTS.Newmail")

link.mailFormat=0
link.bodyFormat=0

link.From = request.form("email")
link.To = "[email protected]"
link.Subject = "Consulta desde la Web"
link.Body = HTML

link.Send
Set link = Nothing
%>
&estado=Mensaje enviado


En donde has puesto este código? Tal vez sea asp del cuál no tengo idea por eso te pregunto, gracias.

Intentare tambien cambiar mi ruta segun Mortiprogramador, y vemos.