62,268
社区成员
发帖
与我相关
我的任务
分享
if (ctl.GetType().Namespace == "System.Web.UI.WebControls")
{
if (ctl is System.Web.UI.WebControls.Button || ctl is System.Web.UI.WebControls.ImageButton || ..)
{
ctl.Click += new EventHandler(bn_Click);//请教这里如何处理
}
}