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

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -