Posted on: 6/8/2014 2:26:42 AM | Views : 409

I converted my entire Web Forms Web Site project (200+ pages) to use bundeling & minification and every page works perfectly except my login screen. The resources get registered fine if I navigate to the login page but if I refresh it, all resources are unrecognized by the browser as if they were never included even though if I look at the source, they are there.
I fired up the network profiler in IE11 and on a single refresh I get these 3 requests:
1. http://dev/ArgoWeb/Login.aspx?ReturnUrl=%2fArgoweb  2. /ArgoWeb/bundles/jquery?v=5LT0ASbM4iSwzp2VLfw4Xo23UDm08wjTCtJEL6FxlNc1 3. /ArgoWeb/Login.aspx?ReturnUrl=%2fArgoWeb%2fbundles%2fjquery%3fv%3d5LT0ASbM4iSwzp2VLfw4Xo23UDm08wjTCtJEL6FxlNc1&v=5LT0ASbM4iSwzp2VLfw4Xo23UDm08wjTCtJEL6FxlNc1
(1) is the login page itself. (2) it the bundle included in the page. But request (3) seems to be triggered by the bundle U ...

Go to the complete details ...