I am working on an ASP.NET MVC3 project, i am using Ajax jquery to communicate with my controllers. i use asp.net caching to store the results before updating the database (SQL Azure).
function SaveCustomersList() {
$.ajax({
type: "POST",
url: '/Customers/SaveCustomersList/',
data: "",
cache: false,
dataType: "text",
success: function (data) {
return true;
}
});
}
The application work fine but not for all users !!
When some users try to update the database the content passed to my DAL objects is null.
this is just happening with the users working on a network.
i have no explanation for that.
thanks for your help.