| Rank: Newbie Groups: Member
 
 Joined: 8/18/2015
 Posts: 6
 
 | 
		    Hi,
 I am using EO.WebBrowser 2015 version. For some pages when we are using GoBack() method,it is giving -400 error. We don't want to display error message or about:blank page where error is displayed. Can you please suggest how to do that. If we use "Back" from right click menu we are not getting this -400 error.
 | 
	| Rank: Administration Groups: Administration
 
 Joined: 5/27/2007
 Posts: 24,425
 
 | 
		    Hi,
 -400 means "cache miss". You can try to handle LoadFailed event and then:
 
 1. Set e.ErrorMessage to null. This will disable the error message;
 2. Call WebView.Reload(true) to reload the current page;
 
 Please let us know if that works for you.
 
 Thanks!
 |