ASP.NET2.0中将文件上传到数据库

Access数据库代码 
 
<% ...@ Page Language = " C# "  EnableViewState = " true "   %>

<% ...@ Import Namespace = " System.Data.OleDb "   %>
<! DOCTYPE html PUBLIC  " -//W3C//DTD XHTML 1.0 Transitional//EN "   " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >

< script runat = " server " > ...

  
protected   void  Button1_Click(  object  sender, EventArgs e )
  ...
{
    System.IO.Stream fileDataStream 
= FileUpload1.PostedFile.InputStream;

    
if (fileDataStream.Length < 1)
    ...
{
      Msg.Text 
= "请选择文件。";
      
return;
    }


    
//得到文件大小
    int fileLength = FileUpload1.PostedFile.ContentLength;

    
//创建数组
    byte[] fileData = new byte[fileLength];
    
//把文件流填充到数组
    fileDataStream.Read(fileData, 0, fileLength);
    
//得到文件类型
    string fileType = FileUpload1.PostedFile.ContentType;

    
//构建数据库连接,SQL语句,创建参数
    string strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("Image2Access.mdb");
    OleDbConnection myConnection 
= new OleDbConnection(strCnn);
    OleDbCommand command 
= new OleDbCommand("INSERT INTO Person (PersonName,PersonEmail,PersonSex,PersonImageType,PersonImage)" +
    
"VALUES (@PersonName,@PersonEmail,@PersonSex,@PersonImageType,@PersonImage)", myConnection);

    command.Parameters.AddWithValue(
"@PersonName",TextBox1.Text);
    command.Parameters.AddWithValue(
"@PersonEmail""mengxianhui@dotnet.aspx.cc");
    command.Parameters.AddWithValue(
"@paramPersonSex""");
    command.Parameters.AddWithValue(
"@PersonImageType", fileType);
    command.Parameters.AddWithValue(
"@PersonImage", fileData);


    
//打开连接,执行查询
    myConnection.Open();
    command.ExecuteNonQuery();
    myConnection.Close();
    Response.Redirect(Request.RawUrl);
  }



  
protected   void  Page_Load(  object  sender, EventArgs e )
  ...
{

    
if (!Page.IsPostBack)
    ...
{
      BindGrid();
    }

  }


  
private   void  BindGrid( )
  ...
{
    
string strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="
    
+ Server.MapPath("Image2Access.mdb");
    OleDbConnection myConnection 
= new OleDbConnection(strCnn);
    OleDbCommand myCommand 
= new OleDbCommand("SELECT * FROM Person", myConnection);

    
try
    ...
{
      myConnection.Open();
      GridView1.DataSource 
= myCommand.ExecuteReader(System.Data.CommandBehavior.CloseConnection);
      GridView1.DataBind();
    }

    
catch (OleDbException SQLexc)
    ...
{
      Response.Write(
"提取数据时出现错误:" + SQLexc.ToString());
    }

  }

  
protected   string  FormatURL(  object  strArgument )
  ...
{
    
return "ReadImage.aspx?id=" + strArgument.ToString();
  }
  

</ script >

< html xmlns = " http://www.w3.org/1999/xhtml " >
< head runat = " server " >
  
< title > 上传文件到数据库 </ title >
</ head >
< body >
  
< form id = " MengXianhui "  runat = " server " >
    
< asp:GridView ID = " GridView1 "  runat = " server "  AutoGenerateColumns = " false " >
      
< Columns >
        
< asp:TemplateField >
          
< ItemTemplate >
            
<% ...#Eval( " PersonName " %>
          
</ ItemTemplate >
        
</ asp:TemplateField >
        
< asp:TemplateField >
          
< ItemTemplate >
            
<% ...#Eval( " PersonEmail " %>
          
</ ItemTemplate >
        
</ asp:TemplateField >
        
< asp:TemplateField >
          
< ItemTemplate >
            
<% ...#Eval( " PersonSex " %>
          
</ ItemTemplate >
        
</ asp:TemplateField >
        
< asp:TemplateField >
          
< ItemTemplate >
            
< img src = " <%#FormatURL(Eval( " PersonID " )) %> "   /></ ItemTemplate >
        
</ asp:TemplateField >
      
</ Columns >
    
</ asp:GridView >
    
< br  />
    
< br  />
    姓名:
< asp:TextBox ID = " TextBox1 "  runat = " server " ></ asp:TextBox >
    
< br  />
    照片:
< asp:FileUpload ID = " FileUpload1 "  runat = " server "   />
    
< asp:Button ID = " btnUpload "  runat = " server "  Text = " 上传 "  OnClick = " Button1_Click " ></ asp:Button >
    
< p >
      
< asp:Label ID = " Msg "  runat = " server "  ForeColor = " Red " ></ asp:Label ></ p >
  
</ form >
</ body >
</ html >
SQL Server数据库代码
 
<%...@ Page Language="C#" EnableViewState="true" %>

<%...@ Import Namespace="System.Data.SqlClient" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server"> ...
  
string strCnn = "Persist Security Info=False;User ID=sa;Password=;Initial Catalog=Book;Server=(local);"
;
  
protected void Button1_Click( object
 sender, EventArgs e )
  ...
{
    System.IO.Stream fileDataStream 
=
 FileUpload1.PostedFile.InputStream;

    
if (fileDataStream.Length < 1
)
    ...
{
      Msg.Text 
= "请选择文件。"
;
      
return
;
    }


    
//得到文件大小
    int fileLength = FileUpload1.PostedFile.ContentLength;

    
//创建数组

    byte[] fileData = new byte[fileLength];
    
//把文件流填充到数组

    fileDataStream.Read(fileData, 0, fileLength);
    
//得到文件类型

    string fileType = FileUpload1.PostedFile.ContentType;

    
//构建数据库连接,SQL语句,创建参数


    SqlConnection myConnection 
= new SqlConnection(strCnn);
    SqlCommand command 
= new SqlCommand("INSERT INTO UserPhoto (UserName,ContentType,Photo)" +

    
"VALUES (@UserName,@ContentType,@Photo)", myConnection);

    command.Parameters.AddWithValue(
"@UserName"
, TextBox1.Text);
    command.Parameters.AddWithValue(
"@ContentType"
, fileType);
    command.Parameters.AddWithValue(
"@Photo"
, fileData);

    
//打开连接,执行查询

    myConnection.Open();
    command.ExecuteNonQuery();
    myConnection.Close();
    Response.Redirect(Request.RawUrl);
  }



  
protected void Page_Load( object  sender, EventArgs e )
  ...
{

    
if (!
Page.IsPostBack)
    ...
{
      BindGrid();
    }

  }


  
private void  BindGrid( )
  ...
{
    SqlConnection myConnection 
= new
 SqlConnection(strCnn);
    SqlCommand myCommand 
= new SqlCommand("SELECT * FROM UserPhoto Order By id DESC"
, myConnection);

    
try

    ...
{
      myConnection.Open();
      GridView1.DataSource 
=
 myCommand.ExecuteReader(System.Data.CommandBehavior.CloseConnection);
      GridView1.DataBind();
    }

    
catch (Exception SQLexc)
    ...
{
      Response.Write(
"提取数据时出现错误:" +
 SQLexc.ToString());
    }

  }

  
protected string FormatURL( object  strArgument )
  ...
{
    
return "ReadImage.aspx?id=" +
 strArgument.ToString();
  }
  

</script>


<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
  
<title>上传文件到数据库</title>
</head>
<body>
  
<form id="MengXianhui" runat="server">
    
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false">
      
<Columns>
        
<asp:TemplateField>
          
<ItemTemplate>
            
<%...#Eval("UserName"%>
          
</ItemTemplate>
        
</asp:TemplateField>
        
<asp:TemplateField>
          
<ItemTemplate>
            
<img src="<%#FormatURL(Eval("id")) %>" /></ItemTemplate>
        
</asp:TemplateField>
      
</Columns>
    
</asp:GridView>
    
<br />
    
<br />
    姓名:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    
<br />
    照片:
<asp:FileUpload ID="FileUpload1" runat="server" />
    
<asp:Button ID="btnUpload" runat="server" Text="上传" OnClick="Button1_Click"></asp:Button>
    
<p>
      
<asp:Label ID="Msg" runat="server" ForeColor="Red"></asp:Label></p>
  
</form>
</body>
</html>
显示图片

<% ...@ Page Language = " C# "   %>

<% ...@ Import Namespace = " System.Data.OleDb "   %>
<% ...@ Import Namespace = " System.Data.SqlClient "   %>
< script runat = " server " > ...

  
protected   void  Page_Load(  object  sender, EventArgs e )
  ...
{
    
////构建数据库连接,SQL语句,创建参数
    //ACCESS数据库使用本注释部分
    
//string strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("Image2Access.mdb");
    
//OleDbConnection myConnection = new OleDbConnection(strCnn);
    
//OleDbCommand command = new OleDbCommand("select * from Person Where PersonID =" + Request.QueryString["id"], myConnection);
    
//myConnection.Open();
    
//OleDbDataReader dr = command.ExecuteReader();
    
//if (dr.Read())
    
//{
    
//  Response.Clear();
    
//  Response.AddHeader("Content-Type", dr["PersonImageType"].ToString());
    
//  Response.BinaryWrite((byte[])dr["PersonImage"]);
    
//}
    
//dr.Close();
    
//myConnection.Dispose();

    
//构建数据库连接,SQL语句,创建参数
    string strCnn = "Persist Security Info=False;User ID=sa;Password=;Initial Catalog=Book;Server=(local);";
    SqlConnection myConnection 
= new SqlConnection(strCnn);
    SqlCommand command 
= new SqlCommand("select * from UserPhoto Where id =" + Request.QueryString["id"], myConnection);
    myConnection.Open();
    SqlDataReader dr 
= command.ExecuteReader();
    
if (dr.Read())
    ...
{
      Response.Clear();
      Response.AddHeader(
"Content-Type", dr["ContentType"].ToString());
      Response.BinaryWrite((
byte[])dr["Photo"]);
    }

    dr.Close();
    myConnection.Dispose();
  }

</ script >

创建SQL数据表语句
CREATE TABLE [UserPhoto] (
    [id] [
int ] IDENTITY ( 1 1 ) NOT NULL ,
    [UserName] [nvarchar] (
255 ) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [ContentType] [varchar] (
50 ) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [Photo] [image] NOT NULL ,
    CONSTRAINT [PK_UserPhoto] PRIMARY KEY  CLUSTERED 
    (
        [id]
    )  ON [PRIMARY] 
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
HttpUploader4全面升级了文件IO组件。新的IO组件在处理磁盘中的文件时,将不必再对文件执行I/O操作,这意味着在对文件进行处理时将不必再为文件申请并分配缓存,所有的文件缓存操作均由系统直接管理,由于取消了将文件数据加载到内存、数据从内存到文件的回写以及释放内存块等步骤,使得HttpUploader4在处理TB级数据时能够拥有闪电般的速度。 新的IO组件赋予了HttpUploader4更强的大数据处理能力。现在HttpUploader4在对GB级文件进行MD5校验时速度提高了4倍。同时CPU占用率更低。 HttpUploader4更加注重对硬盘的保护,在HttpUploader4中不再直接对文件进行I/O操作,而是在内存中对文件进行操作,所以不仅极大的减少了对硬盘的读写次数,同时速度却变的更快了。 借助于HttpUploader4企业能够帮助用户更加轻松的处理工作中的文件,让用户与用户之间的沟通更加的高效。从根本上提高企业竞争力。 考虑到不同的企业使用的开发平台不同,我们已经为企业开发人员提供了完整的与数据库相结合的示例(ASP.NET,JSP,PHP)。开发人员能够非常容易的在自已的系统中实现断点续传功能。 产品特点如下: 1. 为TB级文件提供稳定传输功能。 2. 优化MD5组件,文件扫描速度提升70%。 3. 保护磁盘,上传超大文件时,磁盘IO次数降低50%。 4. 采用全新设计IO组件,上传任意文件大小时始终占用128KB内存。 5. 支持文件及文件夹拖拽上传功能。 6. 支持文件批量上传。 7. 支持文件夹上传。 8. 基于标准HTTP协议。 9. 免费提供JavaScript SDK包,方便您将插件快速集成到已有网站中。 支持语言:PHP,JSP,ASP,ASP.NET(C#),ASP.NET(VB),C++,VC,VC.NET,VB,VB.NET,C#,C#.NET,Delphi,C++Builder 支持平台:Visual Studio 6.0/2002/2003/2005/2008/2010,C++ Builder 6.0/2009/2010,Delphi 7/2009,Visual Basic 6.0/2008,MyEclipse8.x 支持脚本:JavaScript,VBScript 支持服务器:Windows NT,Windows 2003,Windows XP,Windows Vista,Windows 7,Linux,Unix 支持浏览器:IE6,IE7,IE8,360安全浏览器,QQ浏览器,搜狐浏览器,Maxthon(遨游)浏览器1.X,Maxthon(傲游)浏览器2.x 支持文件大小:2G~8EB(1EB=102PB,1PB=1024TB,1TB=1024GB) 支持文件类型:任意类型 版权所有 2009-2012 武汉命运科技有限公司 保留所有权利 官方网站:http://www.ncmem.com/ 产品首页:http://www.ncmem.com/webplug/http-uploader3/index.aspx 在线演示:http://www.ncmem.com/products/http-uploader3/demo/index.html 产品介绍:http://www.cnblogs.com/xproer/archive/2012/05/29/2523757.html 开发文档-ASP:http://www.cnblogs.com/xproer/archive/2012/02/17/2355458.html 开发文档-PHP:http://www.cnblogs.com/xproer/archive/2012/02/17/2355467.html 开发文档-JSP:http://www.cnblogs.com/xproer/archive/2012/02/17/2355462.html 开发文档-ASP.NET:http://www.cnblogs.com/xproer/archive/2012/02/17/2355469.html 升级日志:http://www.cnblogs.com/xproer/archive/2012/02/17/2355449.html 示例下载:http://www.ncmem.com/download/HttpUploader4-demo.rar 文档下载:http://www.ncmem.com/download/HttpUploader4-doc.rar 镜像下载(DBank):cab安装包,开发文
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值