zoukankan      html  css  js  c++  java
  • Mvc 上传图片

    VIEW 代码

    @using (Html.BeginForm("Upload", "UploadFile", FormMethod.Post, new { enctype = "multipart/form-data" }))

    {   

     <input type="file" name="file" />   

     <input type="submit" value="OK" />

     }

    Controller 代码

              [HttpPost]        

     public ActionResult Upload(HttpPostedFileBase file)      

     {            

            if (file != null && file.ContentLength > 0)    

                {           

                   // extract only the fielname                 

                   var fileName = Path.GetFileName(file.FileName);       

                  // store the file inside ~/App_Data/uploads folder             

                  var path = Path.Combine(Server.MapPath("~/Content/File"), fileName);    

                   file.SaveAs(path);                

             }             

             // redirect back to the index action to show the form once again         

             return RedirectToAction("Index");     

     }

  • 相关阅读:
    EntityManager 实例化方法
    Java Jpa 规范
    Spring HandlerInterceptor
    Spring data jpa
    Spring Security @PreAuthorize 拦截无效
    Java ee el表达式
    脏读&幻读
    OR查询是否会使得索引失效?
    ThinkPHP中的parseDSN方法的坑记录一下
    js , map中的坑
  • 原文地址:https://www.cnblogs.com/a546558309/p/2417583.html
Copyright © 2011-2022 走看看