asp classic - Howto get ajax loaded data when ripping a webpage -


i using function in classic asp page content of web page, extract data , display it.

function gethtml(strurl) dim objxmlhttp set objxmlhttp = server.createobject("msxml2.serverxmlhttp") objxmlhttp.open "get", strurl, false objxmlhttp.send gethtml = objxmlhttp.responsetext set objxmlhttp = nothing end function 

unfortunately, since more , more websites using ajax load data divs after standard html has been loaded, function not data these divs.

how can complete page in string?


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -