about Ispostback

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

The first time a page is fetched will IsPostback return false which I can
understand.
Now if I submit the same page to the server will IsPostback return true
which I can understand..
But webb is stateless so how can the server remember after I have clicked on
a sumbit button that this page is not the first time it was fetched. So is
this information stored in the view state.?

//Tony
 
The first time a page is fetched will IsPostback return false which I can
understand.
Now if I submit the same page to the server will IsPostback return true
which I can understand..
But webb is stateless so how can the server remember after I have clicked on
a sumbit button that this page is not the first time it was fetched. So is
this information stored in the view state.?

It could also just check if it is GET or POST, but I do think that
viewstate is likely.

It should be possible to see what is in viewstate to confirm.

Arne
 
Back
Top