摘要: 校验文件真实类型方法: 1 /// 2 /// C#检测真实文件类型函数 3 /// 4 /// 5 /// 6 private bool IsAllowedExtension(HttpPostedFile hifile) 7 { 8 bool ret = false; 9 10 System.IO.FileStream fs = new System.IO.FileStream(hifile.FileName, System.IO.FileMode.Open, System.IO.FileAccess.... 阅读全文
posted @ 2013-12-06 16:37 小6的园子 阅读(706) 评论(0) 推荐(0) 编辑