首页 > Web开发 > 详细

ASP.NET 对于文件的下载与上传

时间:2014-01-27 22:34:53      阅读:474      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
 /// <summary>
        /// 下载附件查看
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void downButton_Command(object sender, CommandEventArgs e)
        {
//传递过来的参数
string fullName = e.CommandArgument.ToString(); string fileName=System.IO.Path.GetFileName(fullName); if (!string.IsNullOrEmpty(fullName)) { try { System.IO.FileInfo downloadFile = new System.IO.FileInfo(fullName); if (downloadFile.Exists) { Response.Clear(); Response.ClearHeaders(); Response.Buffer = false; Response.ContentType = "application/octet-stream"; Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); Response.AppendHeader("Content-Length", downloadFile.Length.ToString()); Response.WriteFile(downloadFile.FullName); Response.Flush(); Response.End(); } else { ClientScript.RegisterStartupScript(this.GetType(), "", "alert(‘不存在这个链接‘)",true); } } catch { ClientScript.RegisterStartupScript(this.GetType(), "", "alert(‘操作失败‘)", true); } } }


bubuko.com,布布扣
 //文件的上传
 protected void appSubmit_Click(object sender, EventArgs e)
        {
            FileUpload upFile = (FileUpload)this.DVSalary.FindControl("appFileUpload");
            if (upFile.HasFile)
            {
                string staffId = ((Label)(this.DVSalary.FindControl("staffID"))).Text.Trim();
                string fileName = "";
                string[] strings = upFile.FileName.Split(\\);
                string[] docNames = strings[strings.Length - 1].Split(.);
                string docName = staffId + DateTime.Now.Year
                    + DateTime.Now.Month + DateTime.Now.DayOfYear 
                    + DateTime.Now.Hour + DateTime.Now.Minute + DateTime.Now.Second 
                    + DateTime.Now.Millisecond 
                    + "."
                    + docNames[docNames.Length - 1];
                fileName = "D:\\" + docName;
                upFile.SaveAs(fileName);
                //保存上传的附件名
                Session["file"] = fileName;
                Label tip = (Label)this.DVSalary.FindControl("toolTip");
                tip.Visible = true;
                tip.ForeColor = System.Drawing.Color.Red;
                tip.Text = "文件上传成功";
                
            }
        }
bubuko.com,布布扣

 

 
bubuko.com,布布扣

ASP.NET 对于文件的下载与上传

原文:http://www.cnblogs.com/aswater-yuanye/p/3534982.html

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