标签: c# .net
是否可以在Page_Load void中获取触发回发的按钮ID?
答案 0 :(得分:3)
string postbackControlName = Request.Params.Get("__EVENTTARGET");
这应该为您提供导致回发的控件的名称。
然后使用Page.FindControl(postbackControlName);获取控件,您可以访问ID。
See this article for more details.