Hey everybody.  Thanks for all the help!

I am using the $.ajaxSetup({cache:false})  option.
It works great.

Looks like I need to study up on the ajax functions.....

Always more stuff to learn!

Thanks.

Steve




On Oct 22, 2:26 am, "汪杰" <[EMAIL PROTECTED]> wrote:
> you can set :
> $.ajaxSetup({cache: false})
> or:
> $.ajaxSetup({beforeSend:
> function(e,xhr,s){xhr.setRequestHeader("If-Modified-Since", new Date(0));}})
> or:
> $('#display').ajaxSend(function(e,xhr,s){xhr.setRequestHeader("If-Modified-Since",
> new Date(0));}).load('../forms/test_form_1.html');

Reply via email to