基本信息
源码名称:Asp.net中图片存储数据库以及页面读取显示通用方案-附源码
源码大小:0.78M
文件格式:.rar
开发语言:C#
更新时间:2013-02-20
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

直接在数据库存储图片对资源图片较多, 图片文件较大 类似银行内部系统中对VIP用户签名就是用签名图片方式存储的 这主要为了安全上考虑,实际需求中使用次数频繁 且常常更新 无疑中这种使数据库中数据显得有些臃肿 数据容量增大,同时也增加了访问数据库服务器的负载,而使用存储图片路径的方式:图片文件放在服务器硬盘上,数据库中只需一个文件路径指向硬盘上图片文件即可 存储方式相比存储字节流要简单容易控制 但是我在网上发现关于这种页面显示的诸多问题如下我说明一下再Asp.net对图片页面显示控制:


/// <summary>
         /// 上传文件同时并保存到数据中统一
         /// Author:chenkai Date:2010年2月2日16:24:29
         /// </summary>
         protected void Button1_Click(object sender, EventArgs e)
         {
             //获取数据
             string getname = this.markname.Text;
             string getfile = this.FileUpload1.PostedFile.FileName;
 
             //上传文件
             string getlastpath = FileUploadCompant(this.FileUpload1);
 
             //获取上传文件流
               byte[] getbyte=new byte[this.FileUpload1.PostedFile.ContentLength];
               Stream filestream = this.FileUpload1.PostedFile.InputStream;
              
             //读入数据
              filestream.Read(getbyte, 0, this.FileUpload1.PostedFile.ContentLength);
 
             //插入数据
              #region
              string sql = "insert into StoreImage(markname,markContent,markType,markSize,markLinkUrl) values(@name,@content,@type,@size,@link)";
 
              SqlParameter[] getpars = new SqlParameter[5];
              getpars[0] = new SqlParameter("@name", getname);
              getpars[1] = new SqlParameter("@content", getbyte);//文件内容插入This.Fileupload1.FileBytes同样可以直接转换成Byte数组不用转换
              getpars[2] = new SqlParameter("@type", this.FileUpload1.PostedFile.ContentType);//保存文件类型
              getpars[3] = new SqlParameter("@size", this.FileUpload1.PostedFile.ContentLength);//文件长度
              getpars[4] = new SqlParameter("@link", getlastpath);
 
              int getrescount = DBUtility.SqlHelper.ExecuteNonQuery(DBUtility.SqlHelper.connString,CommandType.Text,sql,getpars);
 
              if (getrescount == 1)
              {
                  //添加成功
                  ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "aler ", "alert( '图片记录成功添加到数据库'); ", true);
              }
              else
              {
                   //添加失败
                  ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "aler ", "alert( '图片记录添加失败'); ", true);
              }
               
              #endregion
         }