首页 > 其他 > 详细

HttpPostedFileBase 基类

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

    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 基类

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!