ASPX to application communication

  • Thread starter Thread starter Kris Rockwell
  • Start date Start date
K

Kris Rockwell

Hello,

Is there any way to have an ASPX page control browser functionality. For
example, if I build a browser using the AXWebControl, can I toggle certian
interface functions in the browser (say enabling or disabling the back
button) from the ASPX page? If not, is there another way to do this?

Concerning the AXWebBrowser control, os there away within the control to
disable the right-click?

All help is greatly appreciated.

Regards,
Kris
 
Hi Kris,

If you use the axwebbrowser (and not the webbrowser) then you have to make
everything yourself. And therefore also the forward and backward, so if you
leave that from your application, it is not possible with that.

I hope this helps?

Cor
 
I think my example was a little unclear. In the client I have a menu button
that I want to have disabled until a certian page is loaded. Can I establish
communication between the page and the client using an aspx?

Thanks,
Kris
 
Hi Kris,

Are you using the axwebbrowser?

In that situation I use a count for it, I count the documents that starts
for navigation (beforenavigate2) and subtract the documents that are ready
(documentcomplete), than is the page also ready. (this is only needed for
frames)

I hope this gives an answer?

Cor
 
Back
Top