Pergunta

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?

Foi útil?

Solução 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.

Outras dicas

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top