Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

database update requires browser refresh

Status
Not open for further replies.

grnfvr

MIS
Dec 21, 2000
111
US
I am using html, asp, ado, vbscript, and Access to create an online database. I happen to be using frames to easily synchronize the menu. The problem this creates is that when I make an update to the database (a new record, or an edited record), I am forced to hit <refresh> to see the changes. Simply, clicking on 'View Table' on my menu loads the previously generated page rather than re-requesting the file 'View Table' from the server. How do I get around this? Do I have to abandon frames? If so, what the best option to easily maintain a menu & header.
 
grnfvr,

Put this between the <head> tags. It does not cache your data.

<head>
<META HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;>
</head>


cheers, fengshui_1998
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top