Since when is a Refresh a PostBack?

J

Jonathan Wood

I'm getting into the habit of checking IsPostBack in my Form_Load handler
and not updating the page if it is a postback.

However, I notice that if I hit my browser's refresh button, the page
refreshes without any data.

Since when is a refresh a postback?

Thanks.
 
M

Mark Rae [MVP]

Since when is a refresh a postback?

The Refresh button reloads the page in exactly the way that it was
originally loaded... If it was originally loaded as a result of a postback,
then hitting the Refresh button will cause it to be reloaded as from a
postback...

This is standard browser behaviour...
 
E

Eliyahu Goldin

A postback is no more than setting 2 hidden fields __EVENTTARGET and
__EVENTARGUMENT and calling the form's submit() method.

What hitting the Refresh button does is repeating the last submit() call
with exactly the same settings of all fields. Hence you get the effect you
are observing.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
 
A

Angel

Wednesday, January 23, 2008
2:10 PM

This is a matter of where you're doing your databinding and how...

Say you have a grid and you have something like this you may have trouble

if not isPostback then
griddatabinding ()
…
end if

I am suggesting that your databinding is done in code. If so, then you will
experience the kind of problem you are indicating. If you have disable
viewstate then you will also loose your grid style assuming you did every
thing programmatically.

The answer

If not isPostback the n
…
End if
' move this outside your if statement
Griddatabinding()


You may have something similar in your code. If not post some code so we
can help analyze the problem.
 
J

Jonathan Wood

Yeah, okay, I may have more going on here than I originally thought.

Thanks for putting me back on the right track.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top