0

テーブル BIKETYPE { BIKETYPEID, NAME, DESCRIPTION, IMAGE} があります。

IMAGE のデータ型はimageです。リストビューでテーブルを表示しようとしています。画像列以外はすべて見ることができます。

私のコードは次のとおりです

<ItemTemplate>
    <tr>
        <td><%# DataBinder.Eval(Container.DataItem,"BikeTypeId") %></td>
        <td><%# DataBinder.Eval(Container.DataItem,"Name") %></td>
        <td><%# DataBinder.Eval(Container.DataItem,"Description") %></td>
        <td><asp:Image ImageUrl='<%# "Handler.ashx?BikeTypeId="+ Eval("image") %>' ID="Image" runat="server" /></td>
        <td><asp:Button ID="Select" runat="server" Text="Select" CommandName="Select" /></td>
    </tr>
</ItemTemplate>

コードビハインドでは、次のように単純なバインドメソッドを使用しています

protected void bind()
{
        adp = new SqlDataAdapter("Select * From BikeType", str);
        ds = new DataSet();
        adp.Fill(ds);
        ListView1.DataSource = ds;
        ListView1.DataBind();
        ds.Clear();
        adp.Dispose();
}

助言がありますか?

4

1 に答える 1

1

Genric Handler を使用して、画像をリストビューまたはその他のコントロールに表示できます。新しいアイテムを追加することでジェネリック ハンドラーを追加する > ジェネリック ハンドラーを追加し、以下のコードを参照します。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
namespace letsride
{
    /// <summary>
    /// Summary description for Handler1
    /// </summary>
    public class Handler1 : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            int id = int.Parse(context.Request.QueryString["b_id"]);
            string constr = ConfigurationManager.ConnectionStrings["bikewebConnectionString"].ConnectionString;
            SqlConnection con = new SqlConnection(constr);
            con.Open();
            SqlCommand cmd = new SqlCommand();
            cmd.Connection = con;
            cmd.CommandText = "Select image from Biketype where BikeTypeId=@id";
            cmd.Parameters.AddWithValue("id", id);

            object img = cmd.ExecuteScalar();

            try
            {
                context.Response.BinaryWrite((byte[])img);
            }
            catch (Exception ex)
            {
                context.Response.Write(ex.Message);



            }
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

Webフォームで画像を次のように使用します

<asp:Image ID="i" runat="server"   ImageUrl='<%# "Handler.ashx?b_id=" + Eval("BikeTypeId") %> ' /></td>

BikeTypeID は、データベース内のテーブルの ID です。http://makhaai.blogspot.com.au/2010/11/image-handling-in-aspnet-part-1.html も参照してください。

于 2013-03-26T10:37:49.073 に答える