hi,
response.redirect to the same page acts as if the client
has generated a fresh request to that page, so any server-
side code that is on the page will run again.
however, if you check the Page.isPostBack() property
after a response.redirect, it will return false because
the page isn't actually posting back to itself.
Hope this makes it clearer
alex