is there a way to know when the user perform refresh to the page using the SHDocVw.WebBrowserClass of ie using C#

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

There can be a better way but you can consider using Before_Navigate it should be triggered by refresh as well.

EDIT :

I've just checked the documentation apparently refresh doesn't trigger these, sorry.

I think there is no easy to way to this, you might want to try the following component :

http://code.google.com/p/csexwb2/

It's a very nice webbrowser control implementation, using C++ for tricky parts, and got a refreshbegin event that you can use.

link|improve this answer
and how can i know when refresh complete? – Chen Kinnrot Apr 3 '09 at 15:12
NavigateComplete event – dr. evil Apr 3 '09 at 15:20
Be careful that this event will be triggered in every navigation not only refresh you might wanna check the URL to understand the refresh. I can't remember the parameters there can be an indicator in them as well. – dr. evil Apr 3 '09 at 15:23
I'm sorry its not working... not the before_nevigate and nevigatecomplete, i tried the before_nevigate2 and nevigatecomplete2 and its not working neither – Chen Kinnrot Apr 5 '09 at 21:13
you right, updated my answer, please see the edit. – dr. evil Apr 5 '09 at 21:30
feedback

If this is BHO you're writing then OnDocumentComplete event should be fired every time a page finishes loading, but you need to manage your own state and remember the last visited URL -- this way you will know Refresh from a navigation. Also, you need to check whether it's the main window or an IFrame that raises the event by comparing the source of the event with the browser pointer you have memorized in SetSite.

link|improve this answer
OnDocumentComplete event not fired on refresh – Chen Kinnrot Apr 11 '09 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.