Retrieve html/DOM using Selenium/PHPUnit and PHP/cURL Programming Web Development by PsychicTide … working on scraping a website which uses aspx and has eventvalidation/viewstate inputs. Every other scraping experiment I've made was… I need to scrape and can get the viewstate and eventvalidation values from any of those pages. I've been researching… Re: Retrieve html/DOM using Selenium/PHPUnit and PHP/cURL Programming Web Development by PsychicTide …&btnSearch=Search" How I get the viewstate and eventvalidation (these seems to be correct when echo'd)... protected function… Re: Problem in gridview in link button:Invalid postback or callback argument Programming Web Development by kvprajapati … sent down. Three possible options. I guess, 1. Disabled the eventvalidation however, it is not a good idea because you lose… a little of security. 2. Manage Updatepanel controls. ViewState and eventvalidation field should be updated properly. 3. Forget client-side and… Re: Retrieve html/DOM using Selenium/PHPUnit and PHP/cURL Programming Web Development by PsychicTide I've tried several things based off of what I'm working on now (add or remove things, try different functions in replacement)... Anyone know if I'm anywhere close? $url = "http://XXX.XXX.XXX.XX/search.aspx"; $dateCheck = $dateParam = date('m').'%2F'.date('d').'%2F'.date('Y'); $ch = curl_init($url); $ckfile = tempnam…