Sabtu, 17 Agustus 2013

ASP.NET: How to use Generic Handlers

Example of Generic Handlers
Step-1 : Add new "GenericHandlers.ashx" file in your project
 

<%@ 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;


}

}

Output
ASP.NET: How to use Generic Handlers

Tidak ada komentar:

Posting Komentar