D
Dragon
In asp with VB
we can use:
set obj = Server.CreateObject("AAA");
obj.method(); // Then call the method of the ActiveX object
However, in C#
Object obj = Server.CreateObject("AAA");
obj.method(); // Cannot compile, object does not contain definition of
method()
How to solve ???
Cannot Call ActiveX Object in C# ?
we can use:
set obj = Server.CreateObject("AAA");
obj.method(); // Then call the method of the ActiveX object
However, in C#
Object obj = Server.CreateObject("AAA");
obj.method(); // Cannot compile, object does not contain definition of
method()
How to solve ???
Cannot Call ActiveX Object in C# ?