kadir
kadir

Reputation: 1417

WebBrowser Control Navigation Back

Is it possible to Navigate back in the WebBrowser Control? I couldnt find any method to do this.

Upvotes: 2

Views: 703

Answers (2)

Shahar Prish
Shahar Prish

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

Pharao2k
Pharao2k

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

Related Questions