0

我想从我服务器上的 .asp 页面读取源代码,然后从中创建一个 html 页面。

我在某处读到你可以用 webrequest 来做,但我找不到。

任何输入表示赞赏,谢谢。

4

1 回答 1

5

您无法从 ASP 页面读取实际的服务器端代码,但您可以获得页面的结果 html。这是一篇关于它的好文章:

http://classicasp.aspfaq.com/general/how-do-i-read-the-contents-of-a-remote-web-page.html

这是该网站的一个片段,可以帮助您入门——在 SO 上还有其他关于此的帖子:

<% 
    url = "http://www.yoursite.com/yourpage.asp" 
    set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") 
    xmlhttp.open "GET", url, false 
    xmlhttp.send "" 
    Response.write xmlhttp.responseText 
    set xmlhttp = nothing 
%>
于 2013-05-24T15:28:40.283 回答