开发者

How to find which control made the asyncpostback?

开发者 https://www.devze.com 2022-12-31 08:22 出处:网络
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开发

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?


Have you tried this...

Which control raised the async postback event?

0

精彩评论

暂无评论...
验证码 换一张
取 消