If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Refresh Accsess Table

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-18-03, 09:23
liorlank liorlank is offline
Registered User
 
Join Date: Nov 2003
Posts: 22
Refresh Accsess Table

What is th code in ASP to refresh Access table????
Reply With Quote
  #2 (permalink)  
Old 12-21-03, 04:28
MrWizard MrWizard is offline
Registered User
 
Join Date: Mar 2003
Location: Atlanta, GA
Posts: 191
Re: Refresh Accsess Table

Quote:
Originally posted by liorlank
What is th code in ASP to refresh Access table????
Since the WEB is completely stateless, refreshing an Access table to your page is a rather useless issue. Once your page is processed and then loaded in your browser... the connection to the data no longer exists. You just need to reload the page in its entirety... which in effect, refreshes any data that you want to display.

There are some advanced topics dealing with remote data services that you may be alluding to. However, these can get quite complex.

Tim
__________________
Tim
Reply With Quote
  #3 (permalink)  
Old 12-21-03, 21:56
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
And something like this at the top of the page doesn't hurt either:
<%
Response.Expires = -1000 ' Make browser not cache pg.
%>
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On