C\#파일 업로드 기능 간단하게 구현
1.페이지 는 이 JS 와 CSS 를 참조 해 야 합 니 다.
2.페이지 에 Upload.ashx 추가
3.코드 는 다음 과 같 습 니 다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using System.Web.Security;
namespace AL.Web {
/// <summary>
/// Upload
/// </summary>
public class Upload : IHttpHandler {
public void ProcessRequest(HttpContext context) {
context.Response.ContentType = "text/plain";
//context.Response.Write("Hello World");
string r = "";
// sn , , , , ~
string sn = context.Request.QueryString["sn"];
if (sn != null && sn.Length > 14) sn = sn.Substring(0, 14);
if (context.User.Identity.IsAuthenticated == false) {
//
}
try {
//
HttpPostedFile file = context.Request.Files["Filedata"];
string fileName = file.FileName;
string fileType = Path.GetExtension(fileName).ToLower();
// FileName ( , ),
if (fileName.IndexOf(' ') > -1) {
fileName = fileName.Substring(fileName.LastIndexOf(' ') + 1);
} else if (fileName.IndexOf('/') > -1) {
fileName = fileName.Substring(fileName.LastIndexOf('/') + 1);
}
//
string uploadDir = "~/Content/uploadfile/TMP/" + System.DateTime.Now.ToString("yyyyMM") + "/";
//
//
if (Directory.Exists(context.Server.MapPath(uploadDir)) == false) {
Directory.CreateDirectory(context.Server.MapPath(uploadDir));
}
if (Directory.Exists(context.Server.MapPath(uploadDir + System.DateTime.Now.ToString("dd") + "/")) == false) {
Directory.CreateDirectory(context.Server.MapPath(uploadDir + System.DateTime.Now.ToString("dd") + "/"));
}
uploadDir = uploadDir + System.DateTime.Now.ToString("dd") + "/";
string uploadPath = uploadDir + FormsAuthentication.HashPasswordForStoringInConfigFile(fileName, "MD5").Substring(0, 8) + fileType;
//
file.SaveAs(context.Server.MapPath(uploadPath));
// ,
//DbHelperOleDb.ExecuteSql("insert into [temp](temp_sn,temp_Content) values('" + sn + "','" + uploadPath + "')");
//Response.Write("1");
//context.Response.Write("{'IsError':false, 'Data':'" + uploadPath + "'}");
r = "{'IsError':false, 'Data':'" + uploadPath + "'}";
} catch (Exception ex) {
//Response.Write("0");
//throw ex;
//context.Response.Write("{IsError: true, data:'" + ex.Message + "'}");
r = "{'IsError':true, 'Data':'" + ex.Message + "'}";
} finally {
r = r.Replace("'", "\"");
context.Response.Write(r);
context.Response.End();
}
}
public bool IsReusable {
get {
return false;
}
}
}
}
페이지 프론트 데스크 톱 처리 아래 그림:\#FilesUrl 은 업로드 파일 의 경 로 를 데이터베이스 에 저장 하고 주소 에 따라 다운로드 하여 볼 수 있 는 텍스트 상자 입 니 다.
이상 은 C\#파일 업로드 기능 을 실현 하 는 간단 한 세 단계 입 니 다.여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WebView2를 Visual Studio 2017 Express에서 사용할 수 있을 때까지Evergreen .Net Framework SDK 4.8 VisualStudio2017에서 NuGet을 사용하기 때문에 패키지 관리 방법을 packages.config 대신 PackageReference를 사용해야...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.