我定义了一个User control, for example: myControl.ascx.
在myControl.ascx中有两个函数:
1. func1();
2. func2();
在每个aspx 页面中,我都可以调用myControl.ascx, 使用其func1() 和 func2()。
问:是否可以进一步共享使用myControl.ascx中这两个函数?
例如:
在basepage或app_code 中的一个class 当中,写一个函数
public void XYZ(string myStr, UserControl myControlascx),包含myControl.ascx,
每次apsx 调用,只要写XYZ("teststring", myControl1) 即可。
我尝试使用上述方法,结果失败。
谢谢帮助与支持。