Good Day Mr.Salah
The solution I have to offer works with any programming language because I am giving u a http solution.
Use this line in the Head section of the ASP page you are writing.
<META HTTP-EQUIV="Refresh" CONTENT="10">
This will automatically refreshes the pages ( makes a call to the webserver every 10 secs)
Copy and paste the below code and save it as a HTML page in the server scope. The below page will refresh itself every 2 secs.
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META HTTP-EQUIV="Refresh" CONTENT="2">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>
<BODY>
hello sai
</BODY>
</HTML>
Main Topics
Browse All Topics





by: tripst3rPosted on 2003-04-29 at 10:19:59ID: 8421647
I'm not sure that I understand you correctly, but it would seem that you'll have to do this client-side, as the problem rests on the stateless nature of the web itself. Once you flush your response to the requestor, how does your server (your ASP) know what Request to answer? How does it know to which client it should send a Response?
<meta http-equiv="refresh" content="[timeInSeconds]; [pageURI]" />
pageURI can be relative.
You'll also want to use the standard cache-expiring META elements so that when you refresh, you do your best to force the client to get a new version of the page.
My answer assumes that what you want is to show the user a refreshed results page (file2), which could be independent of the user's submitted data, rather than to repeatedly sumbit their input. This latter would, to say the least, skew your results.