Hi All,
I have one dll written in c#. One of its methods return array of dictionary.
I want to call and use that method in ASP file.
I am using jscript in ASP.
my code is a s follows:
the output is "unknown" i.i typeof returns unknown
How can i use this?
The dll name is shareaccessanu and it contains 3 different classes named Fileoperations, Share. Sharecollection .
One of method of class Fileoperations returns array of class Share.
How to use all these methods in Jscript.
Plzzzz help me in above issues.
I ll be fired if i will not complete the project.
Its very urgent.
Thanks,
Anu
I have one dll written in c#. One of its methods return array of dictionary.
I want to call and use that method in ASP file.
I am using jscript in ASP.
my code is a s follows:
Code:
<%
var cls;
cls=new ActiveXObject("shareaccessanu.FileOperations");
var collection=cls.getdic();
Response.write("type of collection "+typeof(collection));
%>
How can i use this?
The dll name is shareaccessanu and it contains 3 different classes named Fileoperations, Share. Sharecollection .
One of method of class Fileoperations returns array of class Share.
How to use all these methods in Jscript.
Plzzzz help me in above issues.
I ll be fired if i will not complete the project.
Its very urgent.
Thanks,
Anu
Comment