当前位置: 首页 > 图文教程 > 网络编程 > ASP > ASP有函数可以把某个网页通过STREAM下载吗?

ASP
ASP讲座之六:ASP与数据库(一)
ASP讲座之七:ASP与数据库(二)
ASP讲座之八:ASP与数据库(三)
ASP讲座之九:ASP与数据库(四)
ASP讲座之十:自己动手编写组件
ASP讲座之十一:结束语:给您一些建议
ASP实用大全-ASP基础(1)
ASP实用大全-ASP基础(2)
ASP实用大全-ASP基础(3)
ASP实用大全-ASP基础(4)
ASP实用大全-ASP基础(5)
ASP实用大全-ASP对象(1)
ASP实用大全-ASP对象(2)
ASP实用大全-ASP对象(3)
ASP实用大全-ASP对象(4)
ASP实用大全-ASP对象(5)
ASP实用大全-ASP对象(6)
ASP实用大全-ASP服务器组件(1)
ASP实用大全-ASP服务器组件(2)
ASP实用大全-ASP服务器组件(3)

ASP有函数可以把某个网页通过STREAM下载吗?


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 48 ::
收藏到网摘: n/a

       <script language="vbscript">
  Function bytes2BSTR(vIn)
  
  Dim strReturn,i,ThisCharCode,innerCode,Hight8,Low8,NextCharCode
  strReturn = ""
  
  For i = 1 To LenB(vIn)
   ThisCharCode = AscB(MidB(vIn,i,1))
   If ThisCharCode < &H80 Then
   strReturn = strReturn & Chr(ThisCharCode)
   Else
   NextCharCode = AscB(MidB(vIn,i+1,1))
   strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
   i = i + 1
   End If
  Next
  
  bytes2BSTR = strReturn
  End Function
  </script>
  <script language="javascript">
  var xmlhttp= new ActiveXObject("Msxml2.xmlhttp")
  xmlhttp.open("GET","http://www.csdn.net/",false)
  xmlhttp.send()
  alert(bytes2BSTR(xmlhttp.ResponseBody))
  </script>
  
  ASP版本的:
  
  <script language="vbscript">
  Function bytes2BSTR(vIn)
  
  Dim strReturn,i,ThisCharCode,innerCode,Hight8,Low8,NextCharCode
  strReturn = ""
  
  For i = 1 To LenB(vIn)
   ThisCharCode = AscB(MidB(vIn,i,1))
   If ThisCharCode < &H80 Then
   strReturn = strReturn & Chr(ThisCharCode)
   Else
   NextCharCode = AscB(MidB(vIn,i+1,1))
   strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
   i = i + 1
   End If
  Next
  
  bytes2BSTR = strReturn
  
  End Function
  
  Dim xmlhttp
  set xmlhttp=Server.CreateObject("Msxml2.xmlhttp")
  xmlhttp.open "GET","http://www.csdn.net/",false
  xmlhttp.send
  response.write bytes2BSTR(xmlhttp.ResponseBody)
  </script>
  
  C#版本的:
  http://www.ccw.com.cn/htm/center/prog/02_5_9_2.asp
  
  using System.IO;
  using System.Net;
  using System.Text;
  在
  private void button1_Click(object sender, System.EventArgs e)
  {
  
  }
  
  byte[] buf = new byte[38192];
  HttpWebRequest request = (HttpWebRequest)WebRequest.Create(textBox1.Text);
  HttpWebResponse response = (HttpWebResponse)request.GetResponse();
  Stream resStream = response.GetResponseStream();
  int count = resStream.Read(buf, 0, buf.Length);
  textBox2.Text = Encoding.Default.GetString(buf, 0, count);
  resStream.Close();