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

python - What's the Pythonic way to report nonfatal errors in a parser? -

angular - Converting AngularJS deffered promise to AngularX observable for JSOM -

sql server - Deadlock occuring in Clustered Columnstore index -