Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.