首页 > 代码库 > .net C# FileUpload控件上传
.net C# FileUpload控件上传
代码
/// <summary> /// 保存 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void btnPro_Click(object sender, EventArgs e) { if (Session["User"] != null) { try { string Imgfile = string.Empty; if (FileUpload_ProductImg.HasFile) { string path = Server.MapPath("~/mImages/ProductUploadFile/"); Imgfile = "mImages/ProductUploadFile/"; //拼接文件的名称 //DirectoryInfo dir = new DirectoryInfo(path); //文件名由文件夹中文件的数量和后缀组成 //string name = dir.GetFiles().Length + Path.GetExtension(FileUpload_ProductImg.FileName); string name = DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + Path.GetExtension(FileUpload_ProductImg.FileName); Imgfile = Imgfile + name; FileUpload_ProductImg.PostedFile.SaveAs(path + name); }else { Page.ClientScript.RegisterStartupScript(this.GetType(), "", @"<script>alert('没有选择文件,请先选择文件!');location.href=http://www.mamicode.com/'NewsContentList.aspx';</script>");>.net C# FileUpload控件上传
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。