public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
String name = context.Request["name"];
String methodName = context.Request["method"];
Type type = this.GetType();
MethodInfo method = type.GetMethod(methodName);
if (method == null) throw new Exception("method is null");
method.Invoke(this, null);