我正在尝试将一些参数传递给通用处理程序并在响应时获取和图像。
我在我的网页上使用此代码作为图像:
<a href="#"><img id="slide-3" src="~/Image_Handler.ashx?SL=/SL1&US=Kim&ID=1 alt="Tulips" title="Tulips" /></a>
当我的页面加载时,图像不会加载。但是,我在我的网页上放了一个按钮,并为 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 时,它工作正常。请帮助我不知道是什么问题。