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?