I want to create my own dynamic banner, so I started to create an Image Handler, atm I have this code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Faeria
{
/// <summary>
/// Summary description for FaeriaImage
/// </summary>
public class FaeriaImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/jpeg";
context.Response.Write("~/Images/bg1.jpg");
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
But when I call "http:// localhost :12361/FaeriaImage.ashx" I only get this: http://abload.de/image.php?img=1deib0.jpg.
And when I call it in my site with I get no image.
Whats is my mistake here?