Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/03/2005, 14:11
Avatar de emilio21
emilio21
 
Fecha de Ingreso: enero-2005
Ubicación: Venezuela
Mensajes: 320
Antigüedad: 20 años, 4 meses
Puntos: 1
Exclamación ¡¡¡¡¡¡ Amigos Una Ayuda Rapido!!!!!!!!!!!!!! Por Favor

HOLA.......................

AMIGOS TENGO UN PROBLEMA AL TRABAJAR CON CDONTS EN WEBSAMBA

YO TENGO UNA CUENTA EN WEBSAMBA, Y ME ENTERE QUE ES COMPATIBLE CON CDONTS, ENTONCES ESTOY HACIENDO UN SISTEMA PARA ENVIO DE EMAILS Y NO ME FUNCIONA, ME DA EL SIGUIENTE ERROR:

Microsoft VBScript runtime error '800a0046'

Permission denied

/webextrema/enviar.asp, line 23

ESTE ES EL CODIGO QUE UTILIZO EN enviar.asp QUE ES DONDE ME DA EL PROBLEMA ES EL SIGUIENTE:

enviar.asp
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Pagina nueva 1</title>
</head>

<body>
<%
de=Request.Form("de")
para=Request.Form("para")
asunto=Request.Form("asunto")
mensaje=Request.Form("mensaje")

If para<>"" or de<>"" or asunto<>"" or mensaje<>"" then
Set myMail = Server.CreateObject("CDONTS.Newmail")
myMail.From = de
myMail.To = para
myMail.Subject = asunto
myMail.Body = mensaje
myMail.Send
Set myMail = nothing
Response.Write("Email Enviado con Exito")
else
Response.Write("Dede escribir la direccion de email de destino")
end if
%>
</body>

</html>