Auto submitting to cfm
Posted
by user337786
on Stack Overflow
See other posts from Stack Overflow
or by user337786
Published on 2010-05-10T23:59:57Z
Indexed on
2010/05/11
0:04 UTC
Read the original article
Hit count: 307
coldfusion
|post
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!
© Stack Overflow or respective owner