English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

like i have a index.html page but i want that whenever anyone opens it, it redirects to a doman/something/ automattically within a second plz help me

2007-03-13 19:17:36 · 5 answers · asked by Sarfaraz Ahmed A 1 in Computers & Internet Programming & Design

5 answers

--------------------HTML REDIRECT:
CONTENT="1; URL=redirect.html">
content is time in seconds, url is the where you want it to go

-------------------JAVASCRIPT REDIRECT:


2007-03-13 19:26:22 · answer #1 · answered by Noodle Head 2 · 0 0

In the portion of your page add this line:



The "0" before the address is the time before it redirects...so if you want to wait a second before redirecting, change it to "1".

Hope this helps!

2007-03-14 02:29:02 · answer #2 · answered by noodlesandbeef 1 · 0 0

save your index.html as index.asp and then write the following in it:

<%@ Language=VBScript%>

<%
Response.Redirect "to which ever page you want to redirect", +1
%>

this will let the user view your index.html for a second but if you want to go directly to the other page then just write:

<%
Response.Redirect "your page"
%>

try it out.......

2007-03-14 02:25:55 · answer #3 · answered by meg 2 · 0 0

if you mean you want to open another browser from a link when people click it, try
Link

2007-03-14 02:25:00 · answer #4 · answered by farina m 4 · 0 0

Add some javascript to the HEADER of your index.html file :


2007-03-14 02:24:46 · answer #5 · answered by RaNi 2 · 0 0

fedest.com, questions and answers