I've created
a form that posts to
a cfm file. When running
a script onLoad that fills in the form values and tries to submit...The site takes me back to the login screen.
function f()
{
document.getElementById("email").value = "
[email protected]";
document.getElementById("password").value = "asdf";
document.getElementById("form1").submit();
}
Please help!