Jump to content


jessepatricio's Content

There have been 2 items by jessepatricio (Search limited from 29/03/2023)


Ordernar por                Order  

#974835 Oque Há De Errado Com Esse Script

Posted by jessepatricio on 21/07/2009, 17:27 in Dúvidas sobre Scripts Prontos de ASP

:rolleyes: Valeu rapa..
então aparece a pagina (The page cannot be found)
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

Please try the following:

* Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
* If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
* Click the Back button to try another link.

HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)

Technical Information (for support personnel)

* Go to Microsoft Product Support Services and perform a title search for the words HTTP and 404.
* Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for topics titled Web Site Setup, Common Administrative Tasks, and About Custom Error Messages.
...
exatmente isso que aparece...
então na verdade eu preciso de codigo em asp para a pagina contato de 7 itens..ex: Nome, email, telefone, ....e por ai vai...



#974827 Oque Há De Errado Com Esse Script

Posted by jessepatricio on 21/07/2009, 16:59 in Dúvidas sobre Scripts Prontos de ASP

Sou novo na rede, alguem poderia me auxiliar nesse código?

<% @language="VBSCRIPT" %>
<%
Dim myMail

Set myMail = CreateObject("CDONTS.NewMail")

If Request.Form("email") = "" Then Email = "jesse@fapnet.com.br" Else Email = Request.Form("email")

  f1 = "	Nome: " & Request.Form("nome") & vbcrlf
  f2 = "	Nome da empresa: " & Request.Form("compania") & vbcrlf
  f3 = "  E-mail: " & Request.Form("email")  & vbcrlf
  f4 = "Telefone: " & Request.Form("telefone")  & vbcrlf
  f5 = " Natureza da consulta: " & Request.Form("natureza")  & vbcrlf
  f6 = " Departamento: " & Request.Form("departamento")  & vbcrlf
  f7 = "Comentário: " & Request.Form("comentario")  & vbcrlf

  fields = f1 & f2 & f3 & f4 & f5 & f6 & f7

myMail.BodyFormat=1
myMail.MailFormat=1
myMail.From=Request.Form("email")
myMail.To="jesse@fapnet.com.br"
myMail.Subject="English Essentials Contato"
myMail.Body=fields
myMail.Send

set myMail=nothing

%>




IPB Skin By Virteq