How to find which control made the asyncpostback ?
Posted
by StupidDeveloper
on Stack Overflow
See other posts from Stack Overflow
or by StupidDeveloper
Published on 2010-05-19T09:32:29Z
Indexed on
2010/05/19
9:40 UTC
Read the original article
Hit count: 181
ASP.NET
|asynchronous
I know how to find which control made the postback, it's something like:
string postBackControl = Request.Params.Get("__EVENTTARGET") == null ? string.Empty : Request.Params.Get("__EVENTTARGET");
but how can I find the one that made async postback?
© Stack Overflow or respective owner