通过字符串调用函数

using System.Reflection;    

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

原文地址:https://www.cnblogs.com/wanyuan8/p/2254431.html