marthalew posted this at 20:32 — 4th October 1999.
They have: 3 posts
Joined: Sep 1999
Could someone please tell me the html for doing so?
Please email replies if possible.
[email protected]
Anonymous posted this at 17:39 — 5th October 1999.
They have: 5,633 posts
Joined: Jan 1970
I think what you mean is to have the .exe file automatically download when you enter the page. If this is correct then:-
INSERT BETWEEN <HEAD></HEAD> TAGS:-
function autoDownload() { window.location.href = "FILENAME.EXE" }
ADD THIS TO <BODY> TAG:-
onLoad="javascript:setTimeout('autoDownload()',2000)"
// the 2000 is the delay in milliseconds
---------- [email protected] http://go.to/hass
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
Anonymous posted this at 17:39 — 5th October 1999.
They have: 5,633 posts
Joined: Jan 1970
I think what you mean is to have the .exe file automatically download when you enter the page. If this is correct then:-
INSERT BETWEEN <HEAD></HEAD> TAGS:-
function autoDownload() {
window.location.href = "FILENAME.EXE"
}
ADD THIS TO <BODY> TAG:-
onLoad="javascript:setTimeout('autoDownload()',2000)"
// the 2000 is the delay in milliseconds
----------
[email protected]
http://go.to/hass
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.