cchitsiang
10/14/2013 - 3:55 AM

Sampe code for HttpHandler

Sampe code for HttpHandler

<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
public class Handler : IHttpHandler {
    public void ProcessRequest (HttpContext context) {
        context.Response.ContentType = "html";
        context.Response.Write("Hello World");
        manaeform(context);
    }
    public void manaeform(HttpContext context)
    {
        context.Response.Write("<html><body><form>");
        context.Response.Write("<h2>Select your feature</h2>");
        if (context .Request .Params ["Feature"]==null)
        {
            context.Response.Write("<select name='Feature'>");
            context.Response.Write("<option>asp.net </option>");
            context.Response.Write("<option>java </option>");
            context.Response.Write("</select></form></body></html>");
        }
    }
    public bool IsReusable {
        get {
            return false;
        }
    }
}