Reputation: 1417
Is it possible to Navigate back in the WebBrowser Control? I couldnt find any method to do this.
Upvotes: 2
Views: 703
Reputation: 4849
You can also do WebBrowser.InvokeScript()
to call window.history.back()
and cause the browser to go back in that way.
Upvotes: 4
Reputation: 695
There is no current way to do this from cache. But you can override the Key-Back Function to catch the back-button-press and implement your own Stack of Sites you visit.
Upvotes: 4