I have javascript page that calling another page. when the second page is called, I send request data to sql server to see how many time the second page is called. But always see that just once. I've added dynamic querystring to prevent cache from browser this is my code:
for(i=1;i<=30;i++)
{
var q="eeee?id=" + i;
window.location=q;
}
But alwayes see these 2 records in database instead of 31 records:
javacall ==> first page that has java call function
eeee?id=30
why page is called in 30th call and not from 1 to 30, for example:
javacall
eeee?id=1
.
.
.
eeee?id=30