<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    love fish大鵬一曰同風起,扶搖直上九萬里

    常用鏈接

    統計

    積分與排名

    friends

    link

    最新評論

    ASP.NET2.0中將文件上傳到數據庫

    此問題經常被人問,本文列出將文字和圖片上傳到數據庫的方法。包括Access數據庫和SQL Server數據庫。

    Access數據庫代碼

    <%&#64; Page Language="C#" EnableViewState="true" %> <%&#64; 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 (&#64;PersonName,&#64;PersonEmail,&#64;PersonSex,&#64;PersonImageType,&#64;PersonImage)", myConnection); command.Parameters.AddWithValue("&#64;PersonName",TextBox1.Text); command.Parameters.AddWithValue("&#64;PersonEmail", "mengxianhui&#64;dotnet.aspx.cc"); command.Parameters.AddWithValue("&#64;paramPersonSex", "男"); command.Parameters.AddWithValue("&#64;PersonImageType", fileType); command.Parameters.AddWithValue("&#64;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")) % alt="" />" /></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數據庫代碼

    <%&#64; Page Language="C#" EnableViewState="true" %> <%&#64; 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 (&#64;UserName,&#64;ContentType,&#64;Photo)", myConnection); command.Parameters.AddWithValue("&#64;UserName", TextBox1.Text); command.Parameters.AddWithValue("&#64;ContentType", fileType); command.Parameters.AddWithValue("&#64;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")) % alt="" />" /></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>

     

    顯示圖片

    <%&#64; Page Language="C#" %> <%&#64; Import Namespace="System.Data.OleDb" %> <%&#64; 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

    posted on 2008-02-05 08:54 liaojiyong 閱讀(1172) 評論(0)  編輯  收藏 所屬分類: Dot Net


    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 亚洲第一AV网站| 亚洲一区二区三区无码国产| 日本在线免费观看| 亚洲伦理一二三四| 亚洲AV之男人的天堂| 免费黄网站在线看| 亚洲精品理论电影在线观看| 国产亚洲精久久久久久无码| 日韩免费精品视频| 精选影视免费在线 | 中文字幕亚洲综合精品一区| 日日操夜夜操免费视频| 国产一区二区免费| 国产亚洲精品AAAA片APP | 国产亚洲精品线观看动态图| 国产精品免费无遮挡无码永久视频| 中文字幕 亚洲 有码 在线| 亚洲情a成黄在线观看| 国产精品视频永久免费播放| 两个人www免费高清视频| 亚洲日韩一区精品射精| 久久综合图区亚洲综合图区| 国产成人免费福利网站| 最近中文字幕mv免费高清在线| 污视频网站在线免费看| 亚洲一卡二卡三卡四卡无卡麻豆| 久久精品国产亚洲7777| 在线jyzzjyzz免费视频| 95免费观看体验区视频| 国产免费黄色无码视频| 性色av极品无码专区亚洲| 亚洲成a人片在线观| 伊人久久综在合线亚洲91| 免费无码又爽又刺激高潮 | 四虎国产成人永久精品免费 | 一级毛片完整版免费播放一区| 国产成人亚洲综合一区| 内射干少妇亚洲69XXX| 中文字幕亚洲不卡在线亚瑟| 国产美女被遭强高潮免费网站| 国产a视频精品免费观看|