Save HTML File with images

Georg

Member
Licensed User
Longtime User
Hello

how can I save a web page from IE or webbrowser.dll on the Pocket PC?
 

Mr_Gee

Active Member
Licensed User
Longtime User
use the HTTP.dll and use the string variable...

B4X:
Request.New1(URL)

Response.New1
Response.Value = Request.GetResponse
string = Response.GetString 'Get the Response string.

Response.Close
 

mjcoon

Well-Known Member
Licensed User
I too have been irritated that there is no "save" in IE Mobile. But to have a separate app to do this would only be useful if it did the same as IE (and no doubt many other browsers) and also saved the required images etc.

Is there an easy way to do that?

Mike.
 
Top