asp.net mvc 上传文件

<% using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { enctype = "multipart/form-data" }))
{ %>
        <input type="file" id="fuimg" name="fuimg" />
          <input type="submit" value="上传" onclick="return UpUImg()" />
<%}

HttpFileCollection hfc = System.Web.HttpContext.Current.Request.Files;

HttpPostedFile postedFile = hfc[0];

 

接下来就是流数据保存

posted on 2012-02-20 11:05  多个马甲  阅读(233)  评论(0编辑  收藏  举报