0

I am debugging the application.SO Just disabled the bundles in global.asax

BundleTable.EnableOptimizations = false;

Even though the querystring is added to the script url

http://localhost:82/Scripts/ProgramView/OrderOffering/Order-Tab-Common.js?_=1392983430969
Cœur
  • 37,241
  • 25
  • 195
  • 267
sathishkumar
  • 1,780
  • 4
  • 20
  • 31

1 Answers1

0

I think this is to make the js-file download every time you reload the page, since the id will be changed and the browser will assume that it's a different resource and won't take it from the cache.

This is good, since you don't need to clear your browsers cache every time you make changes to the js file

peter
  • 14,348
  • 9
  • 62
  • 96