I've recently ran into some code that checks Page.IsCallBack but I wasn't sure how it is different from Page.IsPostBack. Can anyone enlighten me?
Edit: Are they mutually exclusive or can both occur at the same time in a given situation?
|
|
I've recently ran into some code that checks Edit: Are they mutually exclusive or can both occur at the same time in a given situation?
|
|||
|
|
|
|
Page.IsCallBack
Page.IsPostBack
Refer to Page Life Cycle for more detail that shows a diagram illustrating the sequence of events Edit - To answer your new question
|
|||
|
|
A postback is when the form is posted back to itself, either by clicking a submit button or through Javascript (like AutoPostback controls) A callback is when an AJAX Control calls a method on the page as part of an ajax request |
||
|
|
|
|
||
|
|
|
|
A callback is a special postback, so a round-trip always occurs; however, unlike the classic postback, the script callback doesn't redraw the whole page. ViewState is not updated during a callback, it is for postback. More info here: |
||
|
|