Hi, i need help i wanted a simple script made in java if possible just a single page i guess. AAre ou guys familiar with traffic exchange scripts? there is a manual surf and autosurf .. what i want is an autosurf which redirects every 30 seconds on an iframe.. lets say i have 100 domains and i want them all redirected to a single iframe every 30 seconds.
here is the code that im workin on but i cant make it work.
the script above redirects to another page instead of redirecting the site on the set iframe and the script above can only redirect 1 page. I want to redirect multiple page if possible it can be read from a txt file so it should beCode:<HTML> <HEAD> </HEAD> <BODY> <form name="redirect"> <center> <font face="Arial"><b>You will be redirected to the script in<br><br> <form> <input type="text" size="3" name="redirect2"> </form> seconds</b></font> </center> <script> <!-- /* Count down then redirect script By JavaScript Kit (http://javascriptkit.com) Over 400+ free scripts here! */ //change below target URL to your own var targetURL="http://javascriptkit.com" //change the second to start counting down from var countdownfrom=10 var currentsecond=document.redirect.redirect2.value=countdownfrom+1 function countredirect(){ if (currentsecond!=1){ currentsecond-=1 document.redirect.redirect2.value=currentsecond } else{ window.location=targetURL return } setTimeout("countredirect()",1000) } countredirect() //--> </script> <iframe id="Iframe1" frameborder="0" vspace="0" hspace="0" marginwidth="0" marginheight="0" width="100%" scrolling="yes" height="75%" src=targetUR> </iframe> </BODY> </HTML>
redirectsite = "sitelist.txt"
something like that, sorry for being difficlut its just that its hard to explain, anyway i need this simple script on my 100+ subdomains so i can check whether the webpages are still working and if there is a problem and so i can check if all of the sites are compatible on any browsers.
thank you in advance any help will be appreciated.


Reply With Quote



Bookmarks