3C科技 娛樂遊戲 美食旅遊 時尚美妝 親子育兒 生活休閒 金融理財 健康運動 寰宇綜合

Zi 字媒體

2017-07-25T20:27:27+00:00
加入好友
我新增了一個controller(UploadFileController.cs),裡面內容如下,橘色區塊是我自己加入的,其他是原本生成時就有 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; using System.Web.Mvc; namespace UploadFileTest.Controllers {     public class UploadFileController : Controller     {         // GET: UploadFile         public ActionResult Index()         {             return View();         }         [HttpPost]         public ActionResult Index(HttpPostedFileBase file)         {             if (file != null)             {                 string fileName = Path.GetFileName(file.FileName);                 string path = Path.Combine(Server.MapPath("~/Files/"), fileName);                 file.SaveAs(path);                 TempData["message"] = "上傳成功";             }             else             {                 TempData["message"] = "請先選檔案";             }             return RedirectToAction("Index");         }     } }   另外再新增了一個View(Index.cshtml),裡面內容如下,橘色區塊也是自己加入,其他部分生成時就有了 @{     ViewBag.Title = "Index"; } Index     @using (Html.BeginForm("Index", "UploadFile", FormMethod.Post, new {enctype = "multipart/form-data"}))     {                 @Html.Raw(TempData["message"])                     }

本文由charleslin74pixnetnetblog提供 原文連結

寫了 5860316篇文章,獲得 23313次喜歡
精彩推薦