สอบถามผู้รู้หน่อยครับว่าเคยเจอปัญหานี้บ้างหรือเปล่าครับ พอดีที่บริษัทฯ เปลี่ยน Server ใหม่จาก Windows 2003 เป็น Windows 2008 r2 64bit IIS7 แต่ Homepage ยังเป็น ASP ที่ใช้ Components aspSmartUpload อยู่ ผมทำการ Register aspSmartUpload.dll ได้แล้ว ลอง Test ดูจะแสดง Error ดังนี้ครับ รบกวนช่วยด้วยครับ Server ใหม่จะ Up วันอาทิตย์ (27/11/2011) นี้แล้วครับ
Code
**** Error *****
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object
/aspsmartupload.asp, line 11
Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP & aspSmartUpload</title>
</head>
<body>
<%
Dim mySmartUpload
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload") '*** Line 11
If IsObject(mySmartUpload) Then
Response.write("aspSmartUpload Connected")
Else
Response.write("Can not Connect to aspSmartUpload")
End IF
%>
</body>
</html>