guyes,
i am trying to write the application which saves the web page in html format on local path.
But this aspx page contains the 3 classic asp pages,so i am not getting any help to make this possible.
sample code
pls help me.Note. http://www.pscs.kcc.com/Clearance.asp?cnbr=C2011-2783 this page contains the asp pages with 2 differnt tab on it and i need those tab data too on my html page.thankx in advance.
i am trying to write the application which saves the web page in html format on local path.
But this aspx page contains the 3 classic asp pages,so i am not getting any help to make this possible.
sample code
Code:
Dim myWebClient As New WebClient Dim cred As New NetworkCredential("***removed***", "***removed***") myWebClient.Credentials = cred myWebClient.DownloadFile("http://www.pscs.kcc.com/Clearance.asp?cnbr=C2011-2783", "C:\msdn.html")
Comment