Hi Guys
Can someone tell me what is the proper way of loading a webpage (into a webview) returned as a result of successful HTTPPost ( I am hoping that I can use the same exact code with B4i)
Here is what I have done so far, but it's not working properly
Thanks in advance
Can someone tell me what is the proper way of loading a webpage (into a webview) returned as a result of successful HTTPPost ( I am hoping that I can use the same exact code with B4i)
Here is what I have done so far, but it's not working properly
B4X:
Public Sub WebViewInvokeWithCredentials_JobDone( Job As HttpJob )
Try
If Job.Success = True Then
WVHints.LoadHtml( Job.GetString )
End If
Catch
End Try
End Sub
Thanks in advance