Hi,
I have following function in
java script.
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload();",timeoutPeriod);
}
Problem happens when Server doesn't return body content but returns SC_NOT_MODIFIED. Page get cleared in this case( No Content since response body is not there). I am not sure how to retain previous content in browser.
Thanks.