csharp HttpHandler的Sampe代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp HttpHandler的Sampe代码相关的知识,希望对你有一定的参考价值。
<%@ 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;
}
}
}
以上是关于csharp HttpHandler的Sampe代码的主要内容,如果未能解决你的问题,请参考以下文章
比对软件BWA使用
HttpHandler与HttpModule的理解与应用
#.NET EF中HttpModule与HttpHandler对象的基本使用
#.NET EF中HttpModule与HttpHandler对象的基本使用
#.NET EF中HttpModule与HttpHandler对象的基本使用
#.NET EF中HttpModule与HttpHandler对象的基本使用