Click to See Complete Forum and Search --> : update my xml from other site dynamically ?


azbuz
03-19-2008, 08:46 AM
I have a xml file. it gets data from another site. My hosting server allowes scheduled task in 15 min. But I want update data every 30 second. How can I get this data automatically ? Please help me ...

yamaharuss
03-19-2008, 09:24 AM
Is this data simply being displayed on a page? If so, then just set a page refresh for every 30 seconds.

azbuz
03-19-2008, 09:35 AM
I want just update xml file. actually there is an asp file to update xml but I dont know how can I start it every 30 sec.

yamaharuss
03-19-2008, 09:37 AM
In your asp page:

<html>
<head>
<META HTTP-Equiv="Refresh" CONTENT="30; URL=thispage.asp">
<body>
<%
' your asp code to write the XML
%>
</body>
</html>

azbuz
03-19-2008, 09:44 AM
:o I mean I want do that programatically. (on serverside). without user request. ( sory for bad english :D )

cwfontan
03-20-2008, 08:28 AM
set it as a windows task? to execute every 30 seconds?