Prachur
Prachur

Reputation: 1110

Dotnet :- How to go back a web page using windows form app?

I am developing a windows form applicaion, through which i am controlling a web site. i want to go to a previous page after navigating many pages. what approach i should take to go to a previous page.

Upvotes: 0

Views: 177

Answers (1)

Chris Diver
Chris Diver

Reputation: 19842

Are you using a WebBrowser control?

If so, the WebBrowser control contains a GoBack() method that may suit your needs.

http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.goback.aspx

Upvotes: 1

Related Questions