摘要:
示例代码: Uri uri = new Uri("ftp://ftp.microsoft.com/SoftLib/Readme.txt"); if (uri.Scheme == Uri.UriSchemeFtp) { ... 阅读全文
摘要:
示例代码: Uri uri = new Uri("http://www.wrox.com/"); if (uri.Scheme == Uri.UriSchemeHttp) { HttpWebRequest... 阅读全文
摘要:
示例代码: Uri uri = new Uri("http://www.wrox.com/"); if (uri.Scheme == Uri.UriSchemeHttp) { HttpWebRequest... 阅读全文
摘要:
示例代码: string filepath = Server.MapPath("Textfile.txt"); FileStream infile = File.OpenRead(filepath); byte[] buffe... 阅读全文