Hi,

I am using webbrowser control in VB and need to trap the events.

I does this using events and code is as follows:

cEvent.Event_Details Me, "ClickEvt"

Set oElement = WebBrowser1.Document.getElementById("NewBtn")
oElement.onclick = cEvent

When user click on the NewBtn, in the VB "ClickEvt" is executed.

My problem is I have written some code in click event of NewBtn in asp.

So after executing "ClickEvt" in VB it should fire code in asp.

Can some one please guide me.

Thanks,

Prasad.