asp.net中内容页调用不了母版页定义的函数

Type masterType = this.master.GetType();//先获取模板页类型
MethodInfo mi = masterType.GetMethod("要调用的方法名");//再利用反射获取模板页中的方法
mi.Invoke(this.master,null);//执行方法

posted @ 2012-01-29 18:08  scott.pei  阅读(230)  评论(0编辑  收藏  举报