ASP.net 看引起回发的控件

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

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

原文地址:https://www.cnblogs.com/zhenhunfan/p/2807218.html