现在的位置: 首页 > 综合 > 正文

ASP.net 看引起回发的控件

2012年10月03日 ⁄ 综合 ⁄ 共 223字 ⁄ 字号 评论关闭

重写下面这个方法就可以了

protected override void RaisePostBackEvent(System.Web.UI.IPostBackEventHandler sourceControl, string eventArgument)
{
var _typeStr = sourceControl.GetType().ToString();
base.RaisePostBackEvent(sourceControl, eventArgument);
}

抱歉!评论已关闭.