文件名称:VB利用Socket和http和inet进行上传文件
文件大小:5KB
文件格式:RAR
更新时间:2013-07-13 07:45:17
VB利用Socket和http和inet进行上传文件
asp.net <%@ WebHandler Language="C#" Class="Uploader" %> using System; using System.Web; using System.IO; public class Uploader : IHttpHandler { public void ProcessRequest (HttpContext hc) { foreach (string fileKey in hc.Request.Files) { HttpPostedFile file = hc.Request.Files[fileKey]; file.SaveAs(Path.Combine(AppDomain.CurrentDomain.BaseDirectory+@"ChatTemp\" , file.FileName)); } } public bool IsReusable { get { return true; } } }
【文件预览】:
codefans.net
----file_upload()
--------frmUpload.frm(12KB)
--------url.bas(3KB)
--------file_upload.vbp(718B)