I am working on a solution where I am developing a similar control to be hosted in IE. The control, written in C#, exposes public properties which I can set(by using <PARAM> tags in DHTML) and get from HTML and JavaScript. The control is doing some work in a loop. At the end of each iteration and at the end of the loop I need to notify the containg
HTML page. So what I essentially need is to be able to raise events from my control which can be trapped by JavaScript in the containg page. I have read in an article that this is possible using delegates and handling the events in
JavaScript using the <SCRIPT FOR="ControlID" EVENT="EventName">, but this will probably require communication between the C# code in my control and IEHost.dll(the container for the control). Now I am a novice in .NET COM interop. Hence I need some help here. Thanks.