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

go - serving up pdfs using golang -

python - Best design pattern for collection of objects -

sharepoint online - C# CSOM SPView ListItemCollection did not update after I add new field in the SP view -