网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

ASP.NET中上传文件到数据库

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/12
Contents">

  <br>

  <br>

  <asp:button id="btnSubmit" Text="Submit" Runat="server"></asp:button>

  </form>

  第二步

  我们可以将上传的文件通过数据流保存到缓存,缓存的大小和文件的具体大小相同,我们可以使用以下的代码来取得文件的具体大小:

  int intDocLen = txtFileContents.PostedFile.ContentLength;

  然后,我们可以设置缓存的具体大小了:

  byte Docbuffer = new byte[intDoclen];

  这样设置以后,我们可以将上传文件的内容保存到缓存中:

  Stream objStream;

  objStream = txtFileContents.PostedFile.InputStream;

  objStream.Read(Docbuffer,0,intDocLen);

  在以上代码中,读取缓存的时候,从缓存的0位置开始,直到整个文件的长度,其实,这就是整个文件或者整个缓存的大小。

  第三步

  现在我们需要做的就是将缓存数据保存到数据库,我们已经直到数据表结构,这样,我们通过编写简单的SQL语句就可以实现这个功能。在上面的内容中,我们编写了一个存储过程,在程序中,我们只要建立SqlCommand对象并且将这个存储过程传递给它,并设置“@Doc”参数取得缓存数据就可以了:

  cmdUploadDoc = new SqlCommand("uSP_BooksUploadFile",BooksConn);

  cmdUploadDoc.CommandType = CommandType.StoredProcedure;

  cmdUploadDoc.Parameters.Add("@Title ",SqlDbType.VarChar,200);

  cmdUploadDoc.Parameters.Add("@Doc",SqlDbType.Image);

  cmdUploadDoc.Parameters.Add("@DocType",SqlDbType.VarChar,4);

  cmdUploadDoc.Parameters[0].Value = txtTitle.Text;

  cmdUploadDoc.Parameters.Value = Docbuffer;

  cmdUploadDoc.Parameters.Value = strDocType;

  点击按钮处理代码

  private void btnSubmit_Click(object sender, System.EventArgs e)

  {

  string strDocExt;

  //strDocType用于保存上传文件的类型

  string strDocType;

  //用于保存文件大小

  int intDocLen;

  //Stream用于读取上传数据

  Stream objStream;

  SqlConnection BooksConn;

  SqlCommand cmdUploadDoc;

  if(IsValid)

  {

  if(txtFileContents.PostedFile != null)

  {

  //文件类型

  strDocExt = CString.Right

  (txtFileContents.PostedFile.FileName,4).ToLower();

  switch(strDocExt)

 {

  case ".doc":

  strDocType = "doc";

  break;

  case ".ppt":

  strDocType = "ppt";

  break;

  case ".htm":

  strDocType = "htm";

  break;

  case ".html":

  strDocType = "htm";

  break;

  case ".jpg":

  strDocType = "jpg";

  break;

  case ".gif":

  strDocType = "gif";

  break;

  default:

  strDocType = "txt";

  break;

  }

  //上传文件具体内容

  intDocLen = txtFileContents.PostedFile.ContentLength;

  byte Docbuffer = new byte[intDocLen];

  objStream = txtFileContents.PostedFile.InputStream;

  //文件保存到缓存

  //缓存将保存到数据库

  objStream.Read(Docbuffer ,0,intDocLen);

  BooksConn = new  

  SqlConnection("Server=Server;UID=sa;Database=Books");

  cmdUploadDoc = new  

  SqlCommand("uSP_BooksUploa

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号