I'm troubleshooting a jQuery problem which happens when the HTTP requests for a page load include this query string:
GET /Scripts/jquery-1.3.2.min.js?_=1255309685187
Normally, the request has no query string and the response status code is 304:
GET /Scripts/jquery-1.3.2.min.js
However, every so often a query string is appended. Where does this query string come from? What does it mean?
The webserver is Visual Studio's Development Server, and I usually see this in IE8. Occasionally I'll see it in Firefox though. The app is ASP.NET MVC.