tags:

views:

84

answers:

1

Hello,

Although I have set cache:false in a jQuery AJAX Post request, it does not add the extra randomg string. Is this because post does not cache?

Thank you for your time.

+2  A: 

RFC 2616 states (in section 13) that POST requests should not be cached.

Some HTTP methods MUST cause a cache to invalidate an entity. This is either the entity referred to by the Request-URI, or by the Location or Content-Location headers (if present). These methods are:

- PUT
- DELETE
- POST
Yacoby
The problem is, it looks like IE does.
kim3er