I have a pretty straightforward pair of aspx pages that were working just fine until last night. The first page has a form that posts to itself, updates some values in a session object, then calls Response.Redirect to the second page. The second page loads a datagrid from the session object. It was working fine yesterday, so I'm pretty sure all the databinding logic is correct. But now not only is it not loading the datagrid, it never hits a breakpoint I put on the second page's Page_Load method. This is true whether I use Response.Redirect, Server.Transfer, or even if I reload the page or type its url directly. It never hits the breakpoint--as soon as it hits the page, it renders the static parts of the page without the DataGrid. I put a breakpoint in the previous page immediately before the Response.Redirect and tried to step into it, but again, the browser immediately renders the rest of the page without stepping through in the debugger. What could have gone wrong with my configuration that Page_Load wouldn't get called? I reverted the specific files in question back to the version that was working yesterday, but it doesn't work now, so something must have changed somewhere else. Is that possible? Where do I look??
Thanks very much in advance! I'm stumped.