标签: asp.net asynchronous
我知道如何找到哪个控件进行了回发,它类似于:
string postBackControl = Request.Params.Get("__EVENTTARGET") == null ? string.Empty : Request.Params.Get("__EVENTTARGET");
但我怎样才能找到制作异步回发的那个?
答案 0 :(得分:1)
你试过这个......
Which control raised the async postback event?