C# 一般处理程序后台传来参数作为方法Act

来源:互联网 发布:学琵琶怎么找老师知乎 编辑:程序博客网 时间:2024/06/10 00:13
 private HttpRequest req;        private HttpResponse res;        private HttpContext ctx;        public void ProcessRequest(HttpContext context)        {            this.ctx = context;            this.req = ctx.Request;            this.res = ctx.Response;            res.ContentType = "text/plain";            string act = req["act"];            if (string.IsNullOrEmpty(act))            {                res.Write("没有参数");            }            else            {                Type type = this.GetType();                MethodInfo method = type.GetMethod(act);                if (method != null)                {                    method.Invoke(this, null);                }                else                {                    res.Write("没有这个方法");                }            }            res.End();        }
0 0