Let's say I have two pages on the same ASP.NET C# WebSite.
- Page1.aspx does things in the Page_Load event
- I navigate to Page2.aspx using the menu
- Page2.aspx does some things then Response.Redirect back to Page1.aspx
- Page1.aspx cannot do things in Page_Load event this time because it never fires.
I tried to turn off cache declaratively, tried using true for endResponse in my redirect... nothing seems to make a difference.
Never mind everybody! I am a moron! Using Visual Studio Dev Localhost the Redirect was redirecting to the live page! :)