during your logic to action something on the page validate it in some
slight way.

EG.

<cfparam name='form.value' default="">
<cfif len(form.value)>
    TAKE SOME ACTION
</cfif>

On Tue, Jan 15, 2013 at 1:44 PM, Matt Quackenbush <quackfu...@gmail.com> wrote:
>
> You are running the insert query each time you load the page. Remove your
> <cfparam>s on the form fields, and wrap the query in an <cfif>.
>
> <cfif !structIsEmpty( form )>
>      <!--- insert query here --->
> </cfif>
>
> HTH
>
>
> On Tue, Jan 15, 2013 at 2:34 PM, B Griffith <br.griff...@yahoo.com> wrote:
>
>>
>> Hello All,
>>
>> I appreciate everyone's help on my other posts and think I'm coming to
>> understand CF a lot better than I did before I started posting here a few
>> days ago, so kudos to you, friends!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353915
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to