vote up 1 vote down star

I have a user control that is supposed to write a value to a hidden field every time the consuming page posts back.

Is there any way to trap the postback event at the page level? Perhaps I can wire up an event so that I can run a function every time the page posts back.

Thanks.

flag

1 Answer

vote up 1 vote down

You can determine within Page_Load whether an operation is the result of a postback (i'm assuming this is what you mean by "trapping the postback event at the page level".

protected void Page_Load(object sender, EventArgs e)
{
    if (Page.IsPostback)
    {
       //Your code here.

    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.