ASP.net MVC FileUpload 文件上传_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > ASP.net MVC FileUpload 文件上传

ASP.net MVC FileUpload 文件上传

 2011/10/7 7:54:01  ol_beta  http://softbeta.iteye.com  我要评论(0)
  • 摘要:ASP.netMVC的上传文件功能并没有其他模块(action,Controller)那么智能、好用,不过也不是很复杂。打开vs2008新建一个MVC工程如果web项目没有asp.netmvcwebapplication的话,请下载.netMVC确定后显示UnitTest选项根据需要选择,这里就选择NO。首先建立我们上传文件的form,打开用HTMLhelper编写一个form,当然也可以用纯HTML<asp
  • 标签:.net ASP.NET MVC file 上传 文件 net

ASP.net MVC的上传文件功能并没有其他模块(action,Controller)那么智能、好用,不过也不是很复杂。

打开vs2008 新建一个MVC工程


如果web项目没有asp.net mvc web application的话,请下载 .net MVC

确定后显示Unit Test选项 根据需要选择,这里就选择NO。


首先建立我们上传文件的form,打开


用HTML helper编写一个form,当然也可以用纯HTML

<asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server"> 
    Home Page 
</asp:Content> 

<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server"> 
    <h2>File Upload Example</h2> 
    <p> 
     
         
          File 1:<input type="file" name="file1" id="file1" /><br /> 
           <input type="submit" id="upload" value="Upload" /> 
         
    </p> 
</asp:Content> 
?

然后编写相应的action,打开


using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.Mvc; 
using System.Text; 
using System.IO; 

namespace FileUpload.Controllers 
{ 
    [HandleError] 
    public class HomeController : Controller 
    { 
        public ActionResult Index() 
        { 
            //ViewData["Message"] = "Welcome to ASP.NET MVC!"; 

            return View(); 
        } 
        public ActionResult Upload() 
        { 
            StringBuilder info = new StringBuilder(); 
            foreach (string file in Request.Files) 
            { 
                HttpPostedFileBase postFile = Request.Files[file];//get post file 
                if (postFile.ContentLength == 0) 
                    continue; 
                string newFilePath = @"D:/";//save path 
                postFile.SaveAs(newFilePath + Path.GetFileName(postFile.FileName));//save file 
                info.AppendFormat("Upload File:{0}/r/n", postFile.FileName);//info 
            } 
            ViewData["Info"] = info; 
            return View("Index"); 
        } 

        public ActionResult About() 
        { 
            return View(); 
        } 
    } 
} 
?
保存后直接运行

? 这样就可以测试了。
  • 大小: 30.5 KB
  • 大小: 10.4 KB
  • 大小: 7.7 KB
  • 大小: 5.2 KB
  • 大小: 15.2 KB
  • 查看图片附件
发表评论
用户名: 匿名