|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了.另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们)怎样用PHp和Asp跨站抓取其余站点的页面,明天我们来测试一下asp+
是怎样完成跨站抓取其余站点的页面
CodeListing
<%@AssemblyName="System.Net"%>
<%@ImportNamespace="System.Net"%>
<%@ImportNamespace="System.IO"%>
<scriptlanguage="VB"runat="server">
SubPage_Load(SrcAsObject,EAsEventArgs)
DimHttpWRespasHTTPWebresponse
DimsrAsStreamReader
dimSTRtempasstring
text1.text=""
HttpWReq=WebRequestFactory.Create("http://www.asp888.net")
HttpWReq.KeepAlive=false
HttpWResp=HttpWReq.GetResponse()
sr=newStreamReader(HttpWResp.GetResponseStream(),Encoding.ASCII)
Try
line=sr.ReadLine()
dowhilelinenull
line=sr.ReadLine()
lineENC=server.HTMLencode(line)&vbcrlf&"<br>"
text1.text=text1.text&lineENC
loop
CatchexAsException
text1.text="产生毛病:"&ex.Message
EndTry
EndSub
</script>
<html><head>
<title>跨站</title>
</head>
<bodybgcolor="#FFFFFF">
<h3><fontface="Verdana">抓来得数据</font></h3>
<asp:TextBoxid="text1"Width="600px"Textmode="multiline"rows="40"
runat="server"/>
</body></html>
ASP脚本是采用明文(plaintext)方式来编写的。 |
|