I cannnot figure out where I can enter the path after the submit button is clicked. Right now after I click submit it just uses <cfdump>. I would like to have it enter into one of my web pages. Could someone tell me how to do this?
Thanks,
Mark
Thanks,
Mark

RE: CFML Submit button path
The action value of the form will be the action page, like with any regular form.
RE: CFML Submit button path
<form method="POST" action="#cgi.script_name#">
The sample shows up fine but when I go to click on the submit it does something, then it loops to the same page. I cannot tell where the data I changed is going? It seems like it is looping. You guys really need to put up some better directions on how to set this thing up.
Thanks,
RE: CFML Submit button path
A form with action="#cgi.script_name#" is a form that submits to the same page that holds the form.