[thelist] FORM fields are being passed as URL parameters???

Raymond Camden rcamden at allaire.com
Mon Mar 12 14:56:31 CST 2001


You have to use the METHOD attribute of the form tag.

Change:

> 	<form name="ProjectAdd"
> action="ProjectAddEditViewDelete_Action1.cfm" onsubmit="return
> CheckFrm(this);">

to:

 	<form name="ProjectAdd"
 action="ProjectAddEditViewDelete_Action1.cfm" onsubmit="return
 CheckFrm(this);" METHOD="POST">

=======================================================================
Raymond Camden, Principal Spectra Compliance Engineer for Allaire

Email   : jedimaster at allaire.com
ICQ UIN : 3679482

"My ally is the Force, and a powerful ally it is." - Yoda 

> -----Original Message-----
> From: thelist-admin at lists.evolt.org
> [mailto:thelist-admin at lists.evolt.org]On Behalf Of Dan Slater
> Sent: Monday, March 12, 2001 3:31 PM
> To: 'list at dfwcfug.org'; 'thelist at lists.evolt.org'
> Subject: [thelist] FORM fields are being passed as URL parameters???
> 
> What would cause FORM.fieldname to be passed as URL.fieldname - 
> even tho NO
> code on my page uses URL parameters.  Basically, all i've got is a page
> that's multifunctional (Add, Edit, View and Delete records).  All of my
> fields are inside a FORM tag.   The form tag's ACTION attribute 
> doesn't even
> pass any URL parameters.
> 





More information about the thelist mailing list