摘要: html页面 //一般处理程序public class PicUploadHander : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; //验证上传的权限TODO string _fileNamePath = ""; try { _fileNamePath = context.Request.Files[0].FileName; //开始上传 string _savedFileRe 阅读全文
posted @ 2013-09-16 21:17 愤怒的小鹏 阅读(420) 评论(0) 推荐(0) 编辑