Refresh a single frame inside a table

  • Thread starter Thread starter Charles A. Lackman
  • Start date Start date
C

Charles A. Lackman

using code how can i refresh a shopping cart that is inside a frame within a
table. When the user clicks "Add to Cart" the frame to the left of the page
needs to refresh to display the new contents of the shopping cart. If the
whole page is refreshed, then the default page loads (aught), the shopping
cart displays the correct contents (yippy), but the user is nolonger where
they were (augh).

Any suggestions would be greatly appreciated,

thanks,

Chuck
 
You will have to use javascript to do this;

something like...
document.frames['FrameName'].location.href = "pageName.html?" + (new
Date().getTime());

Cheers
Mark
 
Back
Top