using System;
using System.Net;
using System.Text;
using System.IO;
class Test {
[STAThread]
public static void Main(string[] args) {
Uri uri = new Uri("http://www.apache.org");
WebRequest wr = WebRequest.Create(uri);
Stream s = wr.GetResponse().GetResponseStream();
StreamReader sr = new StreamReader(s, Encoding.Default);
Console.WriteLine(sr.ReadToEnd());
sr.Close();
s.Close();
Console.ReadLine();
}
}
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日