When I run the following logic:
1) from Page1.aspx
Response.Redirect("Page2.aspx?Params...")
2) from Page2.aspx Page_Load event
Response.Redirect("Page1.aspx")
The Page1 OnPreRender event does not fire if the browser is IE8. Its ok with Firefox.
It seems that the browser is loading a cached version of the page.
Any idea how to force IE work like FF?
Thanks
Eduardo