程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> ASP.NET MVC處理文件上傳

ASP.NET MVC處理文件上傳

編輯:關於ASP.NET

在MVC應用中,文件的上傳處理比較簡單,下面是一個結合JQuery的例子。

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent"  runat="server">

<h2>Files uploaded to server</h2>

<div id="dialog" title="Upload files">
   <% using (Html.BeginForm("Upload", "File", FormMethod.Post, new { enctype =  "multipart/form-data" }))
   {%><br />
     <p><input type="file" id="fileUpload" name="fileUpload" size="23"/>  ;</p><br />
     <p><input type="submit" value="Upload file" /></p>
   <% } %>
</div>
<a href="#" onclick="jQuery('#dialog').dialog('open'); return false">Upload  File</a>
</asp:content>

然後,我們需要根據BeginForm中FileController和action(Upload)在指定的Controller中處理請求, 參考如下代碼:

public void Upload(
{
foreach (string inputTagName in Request.Files)
{
HttpPostedFileBase file = Request.Files[inputTagName];
if (file.ContentLength > 0)
{
string filePath = Path.Combine(HttpContext.Server.MapPath("../Uploads")
, Path.GetFileName(file.FileName));
file.SaveAs(filePath);
}
}

RedirectToAction("Index", "File");
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved