Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的页面中有很多控件,我想知道谁PostBack在Page_Load事件中导致页面。
PostBack
Page_Load
为此,您可以尝试
string ctr = Page.Request.Params.Get("__EVENTTARGET");
这里ctr将包含您的控件的ID.
ctr
ID
__EVENTTARGET携带信息谁导致页面PostBack
__EVENTTARGET
您还可以使用__EVENTARGUMENT此控件获取参数传递。
__EVENTARGUMENT
Page.Request.Params.Get("__EVENTARGUMENT")