Hi.
I have a web app that uses a IE hosted windows user control. I would like that, somehow, lounch an external event from that hosted control that I could catch in my web form’s code behind. If possible, please send me a small sample project (bozesan_mihai82@yahoo.com).
But, of course, I would appreciate any suggestions!
Thanks in advance!

Raise event from IE hosted windows user control and catch it in the Web Form that’s hosting the control
adcworks
IAN1903
Something like this: my windows user control is declared as an object into the html code:
<OBJECT id="ActiveXLogIn" classid="AuthX.dll#AuthX.XLogIn" VIEWASTEXT>
</OBJECT>
So, my windows user control is AuthX.dll. And from that dll I need to access the button from the web form that's hosting it.
If you can do that, that would really solve my problem ( bozesan_mihai82@yahoo.com )
Thank a million!
Digant
Jorge Loureiro
Thanks for the help!
Jon Irish
CRYOS
Clas
Can you give me a small sample code
Thanks
dimaki
Launch event from client side to catch in the server side You need to post back web request. I'm not sure this is the best way, but I think it's good to create button on web form (hidden button) and from your control push this button.
Rusty Deschenes
flosee
ShyamN MS
grr grr grr
BTW, I already made sample on this some time ago, this was for client side application (that host web browser) but you may find it useful. Check here http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=248929&SiteID=1.
Steve_B
ButtonToPush.Click();
Vagolon