I wrote a script used to check whether the updated website, if updated on the website to check whether there are any new link. Why I got the link address is gibberish? What can i do?
For example:
#include <IE.au3>
$oIE = _IECreate ("lib.verycd.com/2007/05/04/0000148697.html", 1, 1, 0)
_IELoadWait ($oIE)
$oLinks = _IELinkGetCollection ($oIE)
$iNumLinks = @extended
MsgBox(0, "Link Info", $iNumLinks & " links found",1)
For $oLink In $oLinks
If StringLeft($oLink.href,StringLen("ed2k"))="ed2k" Then
MsgBox(0, "Link Info", $oLink.href,1)
EndIf
Next