Advertisement
Guest User

Untitled

a guest
Jun 17th, 2011
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Option 1:
  2.  
  3. <html>
  4. <head>
  5. <script type="text/javascript">
  6. function redirect()
  7. {
  8. window.location="URL";
  9. }
  10. </script>
  11. </head>
  12. <body onload="redirect()"></body>
  13. </html>
  14.  
  15.  
  16. Option 2:
  17.  
  18. <html>
  19. <head>
  20. <meta http-equiv="refresh" content="0;url=URL">
  21. </head>
  22. <body></body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement