goldenix Posted May 6, 2008 Posted May 6, 2008 I was wondering how to tell server i clicked the link without using browser. See a site is counting how many times I click the link www.site.com/click. I can do this with browser, but it will take long, because I will need to create IE, click the link, close IE & repeat, & this is taking ages. (No I cant use IEnavigate, it has never worked...& it will still be slow)I have this code that can get the page source & this is the fastest way to get the source I know & its not using IE. So i was wondering, if im on the right track to mod this code to tell server I clicked the link?;~ Tis is will get page source code & will put it to array ;================================= ;Will this do the job? ;================================= $oHTTP = ObjCreate("winhttp.winhttprequest.5.1") $oHTTP.Open("GET",'www.site.com/click') $oHTTP.Send() ;================================= $HTMLSource = $oHTTP.Responsetext $_Arrayline = StringSplit($HTMLSource, @LF) ; this is the Array $_Arrayline My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list]
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