I'm developing Internet Explorer (8) add-ons with Visual Studio 2008, coded in C# with the help of SpicIE.
What i'm trying to do is providing a Foo object to javascript so that can be called
from javascript. the Foo object itself is from C#. Sorry if my english is bad, the point is how i can call C# Object.method(param) from javascript.
let say i have this on C#
String appName()
{
return "myExtension";
}
I would like javascript would be able to call it, like
var app = window.something.appName();
alert(app); // myExtension
I found this question but cannot follow its procedure.
For further info, the add-ons' goal is to make my javascript able to connect to serial device. The serial communication is done on C#, but the controlling is on javascript.
Please help, thanks.