ashx文件

在ASHX文件中自动生成的代码,定义了IHttpHandler接口的2个方法。最重要的方法是ProcessRequest(),无论是请求还是输出,这个方法都会被调用到。

get方式传递过去,ashx获取context.Request.QueryString[]post方式传递过去,ashx获取context.Request.Form[]

.ashx必须包含IsReusable,如下:

using System;
using System.Web;

public class AverageHandler : IHttpHandler
{
public bool IsReusable
{ get { return true; } }
public void ProcessRequest(HttpContext ctx)
{
ctx.Response.Write("hello");
}
}

你可能感兴趣的:(文件)