码迷,mamicode.com
首页 > 其他好文 > 详细

HttpPostedFileBase 基类

时间:2014-06-25 21:21:02      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ext   com   get   文件   

    public void uploadDocMentSave(string Type)
        {

            if (Request.Files.Count > 0)
            {

                HttpPostedFileBase files = Request.Files[0];//获取文件

                string filename = Path.GetFileName(files.FileName); //获取文件的名称

                int index = filename.IndexOf(".");
                int namelength = filename.Length;
                string HouzuiName = filename.Substring(index, filename.Length - index);
                string newName = string.Format("{0:yyyyMMddHHmmssffff}", DateTime.Now) + HouzuiName;
                //得到文件的名称
                string path = HttpContext.Server.MapPath("file://content//resources//uploadfile//WorkFlow//") + newName;
                files.SaveAs(path);
            }
        }

 

HttpPostedFileBase 基类,布布扣,bubuko.com

HttpPostedFileBase 基类

标签:blog   http   ext   com   get   文件   

原文地址:http://www.cnblogs.com/dullbaby/p/3805434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!