Hi there people, I need help urgently please, my issue is this:
I have an MVC app that does a lot of work with jquery ajax (post), to retreive customer info and load it to the web page. The problem is, that on internet explorer 7, when I click twice a link that retreives the info via ajax ($.post or $.getJSON), the info doesn't refresh; it shows me the info of the first customer i clicked, not the second one, so the info is wrong. I tried to make a debug on the code, and on the second click it doesnt even enter to the action that retreives the data from the database.
I suspect that the problem is with the browser cache, but I don't know how to handle it.
I attach my code, its working fine, expect for the problem i mention previously:
$.getJSON(pathSite + 'PorServiceQuery/GetJsonInfo', {},
function(resp) {
$('#txtPhone').attr('value', resp.ClpCustomerPhone);
$('#txtCelPhone').attr('value', resp.ClpCelPhone);
$('#txtEmail').attr('value', resp.ClpEmail);
});
Thanks in advance.