HOME > ASP > ASP Forum > ส่ง mail asp ไม่ได้ ช่วนดูหน่อยครับ ... The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
ส่ง mail asp ไม่ได้ ช่วนดูหน่อยครับ ... The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
ผมติดตั้ง Cdonts .dll และ SMTP ที่เครือง server เรียบร้อยแล้ว (ใช้ pc ที่บ้าน ทำครับ )
[font=Verdana]error[/font]
Server object error 'ASP 0178 : 80070005'
Server.CreateObject Access Error
/contest.asp, line 9
The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
[font=Verdana]code[/font] Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>testmail </title>
</head>
<body>
<%
Dim myMail
Set myMail = Server.CreateObject("CDONTS.NewMail")
If IsObject(myMail) Then
Response.write("CDONTS Connected")
Else
Response.write("CDONTS not Connect")
End If
Set myMail = Nothing
%>
</body>
</html>
The authenticated user for the Visual Basic (VB) run-time file (Msvbvm60.dll) does not have sufficient permissions. The authenticated user is the IUSR_computername account when you use anonymous access or the user that is authenticated with the Web page.