Hello,
I have developed an app that relies heavily on webview. My question is this, let us say that a nonexistent URL such as web.LoadUrl( "http:///
www.xxsunty.com" ); is entered, the webview shows "web page not available .....net::ERR_NAME_NOT_RESOLVED
I would prefer to intercept and suppress this error message and load a local page with
web.LoadHtml( html,) that shows a more a pleasant message such as ..... please check the url you entered and try again.
I have used web.SetOnError(web_error) and been able to load a new page in my web_error function but this only shows after the error has shown. is there anyway to sink/suppress the original error?
Thank you
Chinedu