使用C#反射实现用户控件调用父页面方法

 

使用反射来调用父页面里的方法。

例如:

        MethodInfo mi =  this.Page.GetType().GetMethod("GetUserName"); //该处的GetUserName是父页面里的方法名称
        int userId=5;       
        return mi.Invoke(p, new object[] {userId}).ToString();  //userId指的指的是GetUserName所要传递的参数。

     别忘记引用上using System.Reflection; 上这个命名空间。


你可能感兴趣的:(使用C#反射实现用户控件调用父页面方法)