tifrice Posted November 30, 2007 Posted November 30, 2007 How to recover HTTP address of a Web page ?
PsaltyDS Posted November 30, 2007 Posted November 30, 2007 How to recover HTTP address of a Web page ? I'm not sure what you mean by "recover", but this returns the address of the current page in IE: #include <IE.au3> $oIE = _IECreate("http://www.google.com") $sURL = _IEPropertyGet($oIE, "locationurl") MsgBox(64, "Result", "URL = " & $sURL) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
tifrice Posted November 30, 2007 Author Posted November 30, 2007 I'm not sure what you mean by "recover", but this returns the address of the current page in IE: #include <IE.au3> $oIE = _IECreate("http://www.google.com") $sURL = _IEPropertyGet($oIE, "locationurl") MsgBox(64, "Result", "URL = " & $sURL) thanks a lot it's ggod !!!!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now