码迷,mamicode.com
首页 > Web开发 > 详细

.net 实现的上传下载,如果是图片就显示上传的图片

时间:2016-06-20 15:26:28      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

HTML:

        <div>
            <input id="fileUpload" type="file" runat="server" />
            <input id="btnFile" type="button" value="上传" runat="server" />
            <asp:Button ID="Button1" runat="server" Text="点击下载" OnClick="Button1_Click1" />
            <br />
            <br />

            <img alt="" src="<%=url%>" width="100" height="100" id="imgShow" />
        </div>

后台代码:

protected void Page_Load(object sender, EventArgs e)
        {
            btnFile.ServerClick += GetFile;
            
        }
        public string url = "";

        public void GetFile(object sender, EventArgs e) 
        {
            String[] Extensions = { ".gif", ".png", ".jpeg", ".jpg", ".bmp" };
            if (!Directory.Exists(Server.MapPath(@"/word/")))
            {
                Directory.CreateDirectory(Server.MapPath(@"/word/"));
            }

            fileUpload.PostedFile.SaveAs(Server.MapPath(@"/word/") + fileUpload.Value);

            if (Extensions.Contains("." + fileUpload.Value.Split(.)[1]))
            {
                url = @"/word/" + fileUpload.Value;
            }
        }

        protected void Button1_Click1(object sender, EventArgs e)
        {
            string strFileName = "典型病例.rtf";
            Response.ContentType = "application/x-zip-compressed";
            //Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); 
            string filename = @"E:\个人练习\MvcDemo\WebTest\word20160620140544\" + strFileName;
            //为路径
            Response.AddHeader("Content-Disposition", "attachment;filename=" + Server.UrlPathEncode(strFileName));
            //Server.UrlPathEncode(); 解决文件名的乱码问题.
            Response.TransmitFile(filename); 
        }

 

.net 实现的上传下载,如果是图片就显示上传的图片

标签:

原文地址:http://www.cnblogs.com/llcdbk/p/5600531.html

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