c# - Windows Phone 8 SDK - WebBrowser Control - How to refresh page from code -


how can refresh webbrowser control code behind? using windows 8 sdk & c#.

you can accomplish storing recent visited url when need refresh navigate it.

private void browser_navigated(object sender, navigationeventargs e) {   lasturi = e.uri; }  private void refresh() {   browser.navigate(lasturi); } 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -