Hambi
September 6th, 2002, 05:29 AM
Hello!
I have ASP and in it a function declared:
<script language=JavaScript>
function AAA(strParams)
{
var obj;
try
{
obj = new ActiveXObject("ActiveXDLL.someclass");
}
catch(e)
{
throw(e)
}
}
</script>
but it thows error message
"Automation server can't create object".
But if i create object in ASP code is OK.
I also create some Sub in VBScript and it doesn't work.
I need this function on the client side.
Client and server are local machine.
What is wrong, please help me!
Tnx
I have ASP and in it a function declared:
<script language=JavaScript>
function AAA(strParams)
{
var obj;
try
{
obj = new ActiveXObject("ActiveXDLL.someclass");
}
catch(e)
{
throw(e)
}
}
</script>
but it thows error message
"Automation server can't create object".
But if i create object in ASP code is OK.
I also create some Sub in VBScript and it doesn't work.
I need this function on the client side.
Client and server are local machine.
What is wrong, please help me!
Tnx