0

いくつかのパラメーターをジェネリック ハンドラーに渡して、応答時に get および image しようとしています。

私は自分のウェブページの画像にこのコードを使用しています:

<a href="#"><img id="slide-3" src="~/Image_Handler.ashx?SL=/SL1&US=Kim&ID=1 alt="Tulips" title="Tulips" /></a>

ページが読み込まれると、画像が読み込まれません。ただし、Webページにボタンを配置し、PostBackUrlに同じURLを指定すると、新しいウィンドウが開き、写真が完全に表示されます.

ここに私の Image_handler コード (汎用ハンドラー) があります

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Web;

namespace WEB_2._0_Programing.Private
{
/// <summary>
/// Summary description for Image_Handler
/// </summary>
public class Image_Handler : IHttpHandler
{

    public void ProcessRequest(HttpContext context)
    {

        String id;
        String Slideshow = context.Request.QueryString["SL"];
        String Username = context.Request.QueryString["US"];
        id = context.Request.QueryString["ID"];

        if (Slideshow != null)
        {
            SqlConnection connection = new SqlConnection("Data Source=KAMY-WIN7\\SQLEXPRESS;Initial Catalog=MainDataBase;Integrated Security=True;Pooling=False");

            String query = "SELECT identity(int,1,1) ID,Image into #temp FROM UserImage where (Username = @username) AND (Slideshow = @slideshow) SELECT * FROM #temp WHERE (ID=@id)";
            SqlCommand command = new SqlCommand(query, connection);
            command.Parameters.AddWithValue("@username", Username);
            command.Parameters.AddWithValue("@slideshow", Slideshow);
            command.Parameters.Add("@id", SqlDbType.Int).Value = int.Parse(id);
            //command.Parameters.Add("@id", SqlDbType.Int).Value = id;
            connection.Open();
            SqlDataReader dReader = command.ExecuteReader();
            dReader.Read();
            context.Response.ContentType = "image/jpeg";
            Byte[] Image = (Byte[])dReader["Image"];
            context.Response.BinaryWrite(Image);
            dReader.Close();
            connection.Close();
        }
        context.Response.Write("NOT OK!!!");

    }       

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

}

この部分のエラーは、ページの読み込み context.Request.QueryString[]; のエラーです。値は返されませんが、ボタンを使用して同じ src を指定すると問題なく動作します。何が問題なのかわかりません。

4

1 に答える 1

1

2つのこと:

  1. あなたの src 属性には終わりがありません"
  2. クエリ文字列などの特殊文字をURL エンコードする必要があります。/

例えば:

<img src='~/Image_Handler.ashx?SL=<%= HttpUtility.UrlEncode("/SL1") %>&US=Kim&ID=1' />
于 2013-01-24T19:55:39.900 に答える