开发者

Identify callback control id

开发者 https://www.devze.com 2023-01-21 20:56 出处:网络
I have a masterpage that contains a user control.The usercontrol uses callbacks for various operations.However, every time a callback is issued from the user control it is propagated down to the pages

I have a masterpage that contains a user control. The usercontrol uses callbacks for various operations. However, every time a callback is issued from the user control it is propagated down to the pages that inherit from the master page. How do I determine the id of the control t开发者_如何转开发hat issued the callback so that I can stop these callbacks from destroying the state of the pages?

Thanks!


string control = page.Request.Params.Get("__EVENTTARGET");
0

精彩评论

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