문제

I have a user control that includes an updatepanel. That contorl is placed inside an updatepanel on the webpage. Is there a way to determine in the user control, if the postback was triggered by a contorl inside it or by a control on the page?

도움이 되었습니까?

해결책 2

I found a way to figure it out. I created a session variable flag, which I turn on when an event of a control inside my user control is triggered. on PreRender I check its state and turn it off.

다른 팁

You could place a label within the update panel and if the control triggers (if it's a button, on button click change the label text) then you can have the label change when the control is tiggered.

Hope that helps.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top