While executing response.redirect on an ASP.NET page, I got an error:
error: cannot get value
for two variables that are passed (one value is retrieved from the query string, the other from viewstate)
I have never seen this error before, so I did some investigation and found recommendations on using the value "False" for "endResponse"
e.g. Response.Redirect ("mypage.aspx", False)
It worked.
My question is: what are the side effects of using "False" for the value of "endResponse" in response.redirect?
that is, any effects on the server cache? Does this page retain permanent memory for a certain period of time? Will this affect different users viewing the same page? etc.
Thanks!
Peter
source share