I have developed a web browser using the WebBrowser
API in Visual Studio for a Windows Phone application) I have add a back button to this web browser. This is the code that I use for the back button to go to previous web page:
private void backOnClick(object sender, RoutedEventArgs e) {
webBrowser1.InvokeScript("eval", "history.go(-1)");
}
So now I want to change the textbox(URL) text considering the web page when press back button. How can I do that?