CFHTTP can only request a single URL; it cannot "interact" with pages or access tabbed content, unless that tabbed content has a unique URL that generates the data. In your case the tabs both call the same URL but they POST different data. If you examine what data that post, you will be able to access just the content that the second tab generates. I'd hazard a guess that each tab does a form submit and then the server replies with different content depending on the data posted to the ASP script. If you install a proxy on your PC, like the free Burp proxy, you can intercept and see all the HTTP requests. Good luck.
↧