using System.Reflection;    

string method = Request["Method"].ToString();
            MethodInfo methodInfo = this.GetType().GetMethod(method);
            methodInfo.Invoke(this, null);

posted on 2011-11-18 17:40  万德源  阅读(275)  评论(0编辑  收藏  举报