テレリック キャプチャ オブジェクトをインスタンス化し、キャプチャ イメージのバイト配列を返す http ハンドラを作成する必要があります。
この http ハンドラーは、別のページの IMG のソースになります。
デフォルト.aspx:
<img src="Handler1.ashx" alt="Alternate Text" />
Handler1.ashx:
public class Handler1 : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
Telerik.Web.UI.CaptchaImage captchaImage = new Telerik.Web.UI.CaptchaImage();
// How can I return captchaImage's byte array (it is not a binary image)
context.Response.ContentType = "image/JPEG"; // ??
}
public bool IsReusable
{
get { return false; }
}
}