F
FlyBoy
Using the following javascript, on an intranet, using FP2003, W2K Server, I
want to direct the user to the page of the same file name as the password.
For anything else, I want the user directed to an error page. I've tried
several if\then statements, but can't get any to work.
Thanks in advance for the help.
Script:
<script language="JavaScript"><!--
function go() {
window.location.href = "" +
document.formName.passwordName.value + '.asp';
return false;
}
//--></script>
want to direct the user to the page of the same file name as the password.
For anything else, I want the user directed to an error page. I've tried
several if\then statements, but can't get any to work.
Thanks in advance for the help.
Script:
<script language="JavaScript"><!--
function go() {
window.location.href = "" +
document.formName.passwordName.value + '.asp';
return false;
}
//--></script>