本文介绍了如何将网页(包括图像)保存为.html页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Hai,
我使用此代码将网页保存为.html页面
Dim LocalFilePath As String =D:\ Jaison \ _profile.html
Dim objWebClient As New System.Net.WebClient
objWebClient.DownloadFile(http:// localhost :62377 / ppp.aspx,LocalFilePath)
但是图像文件没有保存在html页面中。
显示没有图像可用。
帮助我完成这项任务。
提前谢谢....
解决方案
Hai,
I saved a webpage as .html page using this code
Dim LocalFilePath As String = "D:\Jaison\profile.html"
Dim objWebClient As New System.Net.WebClient
objWebClient.DownloadFile("http://localhost:62377/ppp.aspx", LocalFilePath)
But the Image file is not saved in the html page.
It shows that No Image available.
Help me to do this task.
Thanks in advance....
解决方案
这篇关于如何将网页(包括图像)保存为.html页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!