 |
pegase Level: Trainee
 Registered: 06-12-2005 Posts: 1
|
How get the code source (with dhtml, javascript) from a web page ?
Hello,
I try to get the code source (with dhtml, javascript) from a web page like https... to get back the tables of my account but I have only a frame (the first frame of the page)... I have this macro vba: (which works well with the other pages)
IE.navigate "https://www.MyAccount.htm"
Do Until IE.readyState = READYSTATE_COMPLETE
DoEvents
Loop
nFile = FreeFile
Open "C:\Compte.htm" For Output Shared As #nFile
Print #nFile, IE.document.documentElement.innerHTML
Close #nFile
Have you a means there to get back vba the code source of the complete page and not only the first frame (or layer?)?
Thank you for your help
|
|
06-12-2005 at 02:03 AM |
|
|
|
|
 |
 |