SitePoint Sponsor |
|
User Tag List
Results 1 to 1 of 1
-
Nov 13, 2011, 09:34 #1
- Join Date
- Nov 2011
- Posts
- 2
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
ActiveX component cannot create object error
I have created ActiveX dll using visual basic 6.0
I have registered the same using "regsvr32" command
after registering dll i have reseted the iis
After resting IIS I browsed the ASP page which uses Activex dll,
while browsing a error message "ActiveX component cannot create object error"
displayed for me
Please help me out to resolve this issue
Thanks in Advance
Classic ASP Code:
<HTML>
<TITLE>Simple Calculator Test</TITLE>
<BODY>
<%
Response.write "Loaded"
Dim AddResult
Dim AddNum
Set AddNum = Server.CreateObject("SimpleCalculator.Addnumbers")
AddResult = AddNum.Add(140774, 51174)
Response.write AddResult & "<br>"
%>
<BODY>
<HTML>
Bookmarks