轉:在DataGrid顯示圖片

來源:互聯網
上載者:User
   

     上一篇文章說了如何把圖片儲存到資料庫中,所以做了個例子,將圖片顯示在DATAGRID。前面說過了用Response.BinaryWrite()只可以顯示一張圖片,現在用一個DATAGRID控制項,將圖片顯示在DATAGRID中的IMAGE控制項裡。(提示:下面的例子沒有做分頁功能)
    裡面用了兩個圖片控制項,一個是伺服器端的ImageButton,另一個是用戶端的Image控制項。

前台代碼:

<%@ Page language="c#" Codebehind="DataGridImage.aspx.cs" AutoEventWireup="false" Inherits="NetTest.DataGridImage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
  <title>DataGridImage</title>
  <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
  <meta name="CODE_LANGUAGE" Content="C#">
  <meta name="vs_defaultClientScript" content="JavaScript">
  <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
 </HEAD>
 <body MS_POSITIONING="GridLayout">
  <form id="Form1" method="post" runat="server">
   <table align="center" border="1" width="60%">
    <TBODY>
     <tr>
      <td align="center"><font style="FONT-WEIGHT: bold; FONT-SIZE: 11pt">DataGrid中顯示資料庫中的圖片</font></td>
     </tr>
     <tr>
      <td>
       <asp:DataGrid id="DataGrid1" runat="server" AutoGenerateColumns="False" width="100%">
        <Columns>
         <asp:TemplateColumn>
          <ItemTemplate>
           <FONT face="宋體">
            <TABLE id="Table1" cellSpacing="1" cellPadding="1" width="100%" border="0">
             <TR>
              <TD colspan="2"><FONT style="FONT-SIZE: 10pt">圖片名稱:</FONT> <FONT style="FONT-SIZE: 10pt">
                <asp:Label id="lbImageName" runat="server" Text='<%# DataBinder.Eval(Container,"DataItem.ImageName")%>'>
                </asp:Label></FONT></TD>
             </TR>
             <TR>
              <TD><FONT style="FONT-SIZE: 10pt">圖片:</FONT>
               <asp:Image id=Imagebutton1 Width=100 Height=100 runat="server" ImageUrl='<%# "ReadImage.aspx?ImageID="+DataBinder.Eval(Container,"DataItem.ID")%>'>
               </asp:Image>
              </TD>
              <td>
               <IMG width=100 height=100 alt="" src='<%# "ReadImage.aspx?ImageID="+DataBinder.Eval(Container,"DataItem.ID")%>'">
              </td>
             </TR>
            </TABLE>
           </FONT>
          </ItemTemplate>
         </asp:TemplateColumn>
        </Columns>
       </asp:DataGrid></td>
     </tr>
    </TBODY>
   </table>
  </form>
 </body>
</HTML>

 

後台代碼:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

namespace NetTest
{
 /// <summary>
 /// DataGridImage 的摘要說明。
 /// </summary>
 public class DataGridImage : System.Web.UI.Page
 {
  protected System.Web.UI.WebControls.DataGrid DataGrid1;
  private string str="server=localhost;uid=sa;pwd=;database=northwind";
  private void Page_Load(object sender, System.EventArgs e)
  {
   if(!IsPostBack)
   {
    FillData();
   }
  }

  #region Web Form設計器產生的程式碼
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 該調用是 ASP.NET Web Form設計器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  
  /// <summary>
  /// 設計器支援所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion

  private void FillData()//綁定DATAGRID
  {
   SqlConnection cn=new SqlConnection(str);
   SqlCommand cmd=new SqlCommand();
   cmd.CommandText="SELECT * from UpImage";
   cmd.Connection=cn;
   cn.Open();
   SqlDataAdapter da=new SqlDataAdapter();
   da.SelectCommand=cmd;
   DataSet ds=new DataSet();
   da.Fill(ds,"Images");
   DataGrid1.DataSource=ds.Tables["Images"];
   DataGrid1.DataBind();
   cn.Close();
  }
 }
}

ReadImage.aspx(根據傳過來的圖片的編號,取得圖片。只要建一個頁面就可以了,不用放置任何控制項)
後台代碼:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace NetTest
{
 /// <summary>
 /// ReadImage 的摘要說明。
 /// </summary>
 public class ReadImage : System.Web.UI.Page
 {
 
  private void Page_Load(object sender, System.EventArgs e)
  {
   string conn="server=localhost;uid=sa;pwd=;database=northwind";
   SqlConnection cn=new SqlConnection(conn);
   SqlCommand cmd=new SqlCommand();
   cmd.CommandText="select Image from UpImage where ID='"+this.Request["ImageID"]+"'";
   cmd.Connection=cn;
   cn.Open();
   this.Response.ContentType="image/*";
   SqlDataReader dr=cmd.ExecuteReader();
   while(dr.Read())
   {
    this.Response.BinaryWrite((byte[])dr["Image"]);
   }
   cn.Close();
  }

  #region Web Form設計器產生的程式碼
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 該調用是 ASP.NET Web Form設計器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
  
  /// <summary>
  /// 設計器支援所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion

 }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.