This is not a "why don't my resources load in Chrome" question.
I have a site in development (VS 2015 - C#). My site starts off like this:
- Default.aspx loads
- Server.Transfer("view.aspx");
This works fine and all resources (jquery, bootstrap, css files, etc...) load up in I.E. but fail to load in Chrome.
I have also tried Response.Redirect("view.aspx") and get the same results.
I am passing no content from default.aspx to view.aspx, so there is nothing to preserve there.
If I set the "View.aspx" page to be the startup page, both I.E. and Chrome work fine. This would seem to indicated that my page/resources/references/etc. are fine.
So, why does Server.Transfer and/or Response/Redirect create a failure to load resources under Chrome but direct navigation seems to be fine?