derkaderka Posted October 31, 2010 Posted October 31, 2010 Hello, I am trying to make an application that monitors changes in web pages. Specifically, the change in a certain line of a specific web page. Do do this, I need the source code of the web site. However, I don't want to use Internet Explorer to do this. I know how to get the web source code in C#, but I want to do it in autoit. Can you help me?
wakillon Posted October 31, 2010 Posted October 31, 2010 Have you tried _INetGetSource function ? AutoIt 3.3.18.0 X86 - SciTE 4.4.6.0 - WIN 11 24H2 X64 - Other Examples Scripts
GEOSoft Posted October 31, 2010 Posted October 31, 2010 There is even a function that is native to AutoIt that does it, InetRead() which returns binary so it has to be converted to a string. $sSrc = BinaryToString(InetRead("http://www.someurl.com")) George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
ProgAndy Posted October 31, 2010 Posted October 31, 2010 @GEOSoft: _InetGetSource is just a wrapper that combines BinaryToString and InetRead with proper error-handling. *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes
GEOSoft Posted November 1, 2010 Posted November 1, 2010 Well aware of that but thanks. My thoughts are if that's the only function I'm going to be calling from that UDF then I'm not going to be #Inclding it. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
BlackDawn187 Posted November 1, 2010 Posted November 1, 2010 Just Use InetGet("http://website.com", "source.html") Code may not work as is just off the top of memory.
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