views:

9

answers:

1

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?

+1  A: 

Have you tried this...

Which control raised the async postback event?

Naeem Sarfraz
thanks! works perfectly! :)
StupidDeveloper