Hi guys hope you all are fine :)

I have built a com visible dll in .Net 3.5. As i wanted to call it from classic asp & I registered it in the following way.

Code:
gacutil /i COMCallFromASP.dll

regasm /tlb COMCallFromASP.dll
and my asp code is like

Code:
<%
	Dim obj
	Set obj = Server.CreateObject("COMCallFromASP.HelloWorld")
...