Hello
I need code to download the webview Html file when I load a page in webview and when the webview is loaded
My English is not good!
1.Load Url in WebView
2.When Load WebView PageFinished
3.Download File Html Webview (When PageFinished !)
Hello, The code example below retrieves HTML content from WebView via three different techniques: 1.) MenuItem 2.) LongClick 3.) PageFinished. The code calls addJavascriptInterface() & executeJavascript() contained in WebViewExtras library V1.40 to accomplish this task. For more background see...
Hello, The code example below retrieves HTML content from WebView via three different techniques: 1.) MenuItem 2.) LongClick 3.) PageFinished. The code calls addJavascriptInterface() & executeJavascript() contained in WebViewExtras library V1.40 to accomplish this task. For more background see...
Dim j As HttpJob
j.Initialize("", Me)
j.Download("https://www.google.com")
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString) ' HTML page string.
End If
j.Release