Reputation: 1
hi i am making a script in classic asp to generate a static file for some images to include into several pages on my site. i want to run that script one time in a day in classic asp any help please thank you
this is my sitemap generating script
dim fs,f,first,second,css
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("D:\ideal_v3_local_live\trunk\sitemap-reviews_1.5.html",true)
Upvotes: 0
Views: 779
Reputation: 4638
You can set a longer interval before the script times out with Server.ScriptTimeout
http://www.w3schools.com/asp/prop_scripttimeout.asp
Upvotes: 1